mirror of
https://github.com/fluencelabs/examples
synced 2025-04-29 04:32:14 +00:00
13 lines
220 B
TypeScript
13 lines
220 B
TypeScript
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import './index.css';
|
||
|
import App from './App';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<React.StrictMode>
|
||
|
<App />
|
||
|
</React.StrictMode>,
|
||
|
document.getElementById('root')
|
||
|
);
|
||
|
|