aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
blob: 62adcf3c5f301c3cc0fc2b962943773f0e35d89b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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')
);