ExamplesJustifyItems are distributed along the main axisAlignItems are vertically aligned along the secondary axisGutterAny number could be used for gutter values as wellHorizontal Gutter (in px): SpanDetermines the size the item stretches to in relation to its parent.PropsTBCGuidelinesTo Note: Every <Row> tag must be accompanied by a corresponding <Col> tag as shown in the example below:/* Rendering two components in a row */
<Row gutter={8}>
<Col>
<AnyComponentHere />
<Col />
<Col>
<AnyComponentHere />
<Col />
<Row />