Skip to content

Instantly share code, notes, and snippets.

@lomse
Created October 11, 2018 00:41
Show Gist options
  • Save lomse/451d9d9d88e5793bee59906709259e0b to your computer and use it in GitHub Desktop.
Save lomse/451d9d9d88e5793bee59906709259e0b to your computer and use it in GitHub Desktop.
App.jsx
import React from 'react'
import styled from 'styled-components'
import TodoList from './TodoList'
import TodoForm from './TodoForm'
const Container = styled.div`
width: 250px;
margin: 10px auto;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px
`
const App = () => (
<Container>
<TodoForm />
<TodoList />
</Container>
)
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment