Skip to content

Instantly share code, notes, and snippets.

@mattmcla
Last active June 25, 2016 23:45
Show Gist options
  • Select an option

  • Save mattmcla/f435afcca2010c4236d3a32612922af9 to your computer and use it in GitHub Desktop.

Select an option

Save mattmcla/f435afcca2010c4236d3a32612922af9 to your computer and use it in GitHub Desktop.
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