Created
December 5, 2017 10:43
-
-
Save neoighodaro/92365796ae2cbd47737d4d5b1734f937 to your computer and use it in GitHub Desktop.
This file contains 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
const TodoComponent = { | |
width: "300px", | |
margin: "30px auto", | |
backgroundColor: "#44014C", | |
minHeight: "200px", | |
boxSizing: "border-box" | |
} | |
const Header = { | |
padding: "10px 20px", | |
textAlign: "center", | |
color: "white", | |
fontSize: "22px" | |
} | |
const ErrorMessage = { | |
color: "white", | |
fontSize: "13px" | |
} | |
const styles = { | |
TodoComponent: TodoComponent, | |
Header: Header, | |
ErrorMessage: ErrorMessage | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment