Created
November 15, 2018 11:15
-
-
Save zapkub/4d607309e8fd19f7711c5446c83ea5af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default () => ( | |
<TodoStoreProvider> | |
<div className="App todoapp"> | |
<header className="header"> | |
<h1>todos</h1> | |
<TodoInput /> | |
</header> | |
<section className="main"> | |
<TodoList /> | |
</section> | |
<footer className="footer"> | |
<TodoCount /> | |
<TodoFilters /> | |
</footer> | |
</div> | |
<Footer /> | |
</TodoStoreProvider> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment