Hi! Sorry for dumb question, but I googled really a lot and with no luck.
I’m trying to create a simple app with React and Emotion with 2 FC that must be placed in a row: second FC must be at the right of first one. I tried to do it with divs, but it just does not work for me. Could you help?
Copy code
div {
css {
margin = 30.px
display = Display.inlineBlock
}
div {
// first component
}
div {
// second component
}
}