summaryrefslogtreecommitdiffstats
path: root/src/index.js
blob: 62230957bacce3d27271283f0ccc8bfdab077e9b (plain) (blame)
1
2
3
4
5
6
7
8
import './index.css'

import React from 'react'
import {render} from 'react-dom'

import App from './App'

render(<App/>, document.querySelector('#app'))