index.js 184 Bytes
Newer Older
Dan Abramov's avatar
Dan Abramov committed
1
2
3
import React from 'react';
import { render } from 'react-dom';
import App from './App';
4
import './index.css';
Dan Abramov's avatar
Dan Abramov committed
5

6
const rootEl = document.getElementById('root');
Dan Abramov's avatar
Dan Abramov committed
7
render(<App />, rootEl);