import { Container, Row, Col } from 'react-bootstrap-5' import { Meta } from '@storybook/react' type Args = React.ComponentProps export const ColumnRowCell = (args: Args) => { return (
Col 1
Col 2
Col 3
) } const meta: Meta = { title: 'Shared / Components / Bootstrap 5 / Column-Row-Cell', component: Row, parameters: { bootstrap5: true, }, } export default meta