Last active
January 19, 2019 23:20
-
-
Save marcelmokos/517c89875b659290a600a5eb1fff77e3 to your computer and use it in GitHub Desktop.
Calendar.defaultProps
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
Calendar.defaultProps = { | |
Wrapper: styled.div` | |
display: flex; | |
flex-direction: row; | |
`, | |
Column: styled.div` | |
display: flex; | |
flex-direction: column; | |
margin: 0.5rem; | |
`, | |
Box: styled.div` | |
display: flex; | |
flex-direction: row; | |
`, | |
Item: styled.div` | |
width: 100%; | |
`, | |
headers: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], | |
children: ({ Wrapper, Column, Box, Item, headers }) => ( | |
<Wrapper> | |
{headers.map((header, index) => ( | |
<Column> | |
{header} | |
<Box> | |
<Item>Item</Item> | |
<Item>Item</Item> | |
<Item>Item</Item> | |
</Box> | |
<Box> | |
<Item>Item</Item> | |
<Item>Item</Item> | |
<Item>Item</Item> | |
</Box> | |
</Column> | |
))} | |
</Wrapper> | |
) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment