making a simple todolist with hooks

This commit is contained in:
Ben Awad
2018-10-26 19:39:46 -05:00
parent f5e1e004c1
commit 9768247f8f
8 changed files with 88 additions and 77 deletions
+5 -6
View File
@@ -1,10 +1,9 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
import React from "react";
import ReactDOM from "react-dom";
import App from "./App";
import * as serviceWorker from "./serviceWorker";
ReactDOM.render(<App />, document.getElementById('root'));
ReactDOM.render(<App />, document.getElementById("root"));
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.