TodoList/src/index.js

10 lines
174 B
JavaScript
Raw Permalink Normal View History

2020-01-05 21:07:36 +00:00
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import './index.css';
ReactDOM.render(
<App />,
document.getElementById('root')
);