aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
blob: 40520ba7193c2d06c7f6f4b95385e1e396ef2485 (plain)
1
2
3
4
5
6
7
8
9
10
11
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')
);