Created
October 9, 2018 09:13
-
-
Save lomse/bed79c7420c1738490a5db172cce4849 to your computer and use it in GitHub Desktop.
Styled Components
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 React from 'react' | |
import styled from 'styled-components' | |
import TodoItem from './TodoItem' | |
const StyledUl = styled.ul` | |
padding: 0 | |
` | |
const TodoList = () => ( | |
<StyledUl> | |
<TodoItem id="todo-1" title="Learn React.js" /> | |
<TodoItem id="todo-2" title="Learn Vue.js" /> | |
<TodoItem id="todo-3" title="Learn Laravel" /> | |
</StyledUl> | |
) | |
export default TodoList |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment