Skip to content

Instantly share code, notes, and snippets.

@ecasanes
Last active July 11, 2020 09:20
Show Gist options
  • Save ecasanes/3fe2f270731ac4fe891a90ab71ceed2e to your computer and use it in GitHub Desktop.
Save ecasanes/3fe2f270731ac4fe891a90ab71ceed2e to your computer and use it in GitHub Desktop.
React Todo List App - Create Base Components
import React from 'react';
import './App.css';
function App() {
return (
<div>
<Header />
<TodoInput />
<TodoList />
<DoneList />
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment