mirror of
https://github.com/waku-org/js-waku.git
synced 2025-02-17 14:57:19 +00:00
12 lines
219 B
TypeScript
12 lines
219 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')
|
||
|
);
|