Skip to content

Instantly share code, notes, and snippets.

@hnordt
Last active July 5, 2019 05:02
Show Gist options
  • Save hnordt/44459fe1497027ae1bcc1aba546605b2 to your computer and use it in GitHub Desktop.
Save hnordt/44459fe1497027ae1bcc1aba546605b2 to your computer and use it in GitHub Desktop.
function Col({
as = "div",
justifyContent,
alignItems,
flex,
children
}) {
return createElement(as, {
className: css({
display: "flex",
flexDirection: "column",
justifyContent,
alignItems,
flex
}),
children
});
}
function Row({
as = "div",
justifyContent,
alignItems,
flex,
children
}) {
return createElement(as, {
className: css({
display: "flex",
justifyContent,
alignItems,
flex
}),
children
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment