Layout
Layout components help replace common patterns when building a UI.
For example, <Flex />
saves you the time of having to write <div style={{ display: 'flex' }} />
or <Block display="flex" />
.
Box
Basic div
element with no defaults
Flex
Renders a div
with display: flex
set by default.
Block
Renders a div
with display: block
set by default.
First BlockSecond Block