summaryrefslogtreecommitdiffstats
path: root/src/index.js
blob: 54c5ef1a427ab033ff649410d3f956c737a09d3a (plain)
1
2
3
4
5
6
7
8
9
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import './index.css';

ReactDOM.render(
  <App />,
  document.getElementById('root')
);