Function Row

  • Parameters

    Returns Element

    A pre-configured Flex component that arranges children horizontally.

    import {Row} from 'muitils'
    // or
    import {Row} from 'muitils/Flex'




    <Row center={['x', 'y']}>
    <div>Item 1</div>
    <div>Item 2</div>
    </Row>
    <Row layout={{x:'space-between', y:'center'}}>
    <div>Item 1</div>
    <div>Item 2</div>
    </Row>
    <Row reverse>
    <div>Item 1</div>
    <div>Item 2</div>
    </Row>