Flex
Flex is wrapper for your items which needs to be placed as flexible boxes. It is used to group multiple items both vertically and horizontally
Usage
import React from 'react'
import { Flex, Text } from '@therise3107/axis'
const home = () => (
<Flex>
<Text>Sample text 1</Text>
<Text>Sample text 2</Text>
</Flex>
)Concept
API Reference
Further reading
Last updated
Was this helpful?