mirror of
https://github.com/fluencelabs/examples
synced 2025-05-15 12:21:19 +00:00
* init reorg * updated readme * fix CI * remove outdated ipfs-node example * add Readme * update readme, add config file Co-authored-by: folex <0xdxdy@gmail.com>
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import './index.scss';
|
|
import App from './components/App';
|
|
import log from 'loglevel';
|
|
|
|
log.setLevel('error');
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
document.getElementById('root'),
|
|
);
|