Last active
April 5, 2016 04:33
-
-
Save abhiaiyer91/4539af4756c65460d43b to your computer and use it in GitHub Desktop.
App
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
// in client/components/app.jsx | |
import AddTodo from '../imports/client/components/AddTodo'; | |
import TodoList from '../imports/client/components/TodoList'; | |
import Footer from '../imports/client/components/Footer'; | |
export default function TodoApp() { | |
<div> | |
<AddTodo/> | |
<TodoList/> | |
<Footer/> | |
</div> | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment