Created
July 31, 2018 10:21
-
-
Save SaraVieira/d736b6695d44d048b02c17b137904484 to your computer and use it in GitHub Desktop.
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
module.exports = flex = ([align = "flex-start", justify = "flex-start"]) => ({ | |
display: "flex", | |
"align-items": align, | |
"justify-content": justify | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment