Last active
June 25, 2016 23:45
-
-
Save mattmcla/f435afcca2010c4236d3a32612922af9 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
| import AddTodo from '../containers/AddTodo' | |
| import Footer from './Footer' | |
| import React from 'react' | |
| import VisibleTodoList from '../containers/VisibleTodoList' | |
| import config from 'config' | |
| const App = () => ( | |
| <div> | |
| <h1>{config.say}</h1> | |
| <AddTodo /> | |
| <VisibleTodoList /> | |
| <Footer /> | |
| </div> | |
| ) | |
| export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment