import React from 'react' import { Meta } from '@storybook/react' import { Column } from './Column' import { Box } from '../Box/Box' import { Text } from '../Text/Text' export default { title: 'Components/Column', component: Column, } as Meta const Content: React.FC = ({ children }) => ( {children} ) export const Basic = () => ( <> 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4 4 6 6 auto auto auto auto ) export const Responsive = () => ( mobile: 12, tablet: 6, desktop: 3 mobile: 12, tablet: 6, desktop: 3 static: 6 )