mirror of
https://github.com/fluencelabs/examples
synced 2025-04-29 12:42:15 +00:00
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'),
|
||
|
);
|