Created
October 9, 2018 09:20
-
-
Save lomse/f2700f81dc18dcaadf71f1291d47c8d6 to your computer and use it in GitHub Desktop.
Styled Component
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' | |
const FormInput = styled.input` | |
width: 235px; | |
outline: none; | |
font-size: 13px; | |
padding-top: 7px; | |
padding-bottom: 7px; | |
padding-left: 10px; | |
` | |
const TodoForm = () => ( | |
<form> | |
<FormInput placeholder="Enter new todo" /> | |
</form> | |
) | |
export default TodoForm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment