import React from 'react'; import { Container } from './Container.quanta'; import type { Meta, StoryObj } from '@storybook/react-vite'; const meta = { title: 'Quanta/Container', component: Container, tags: ['autodocs'], } satisfies Meta; export default meta; type Story = StoryObj; export const Narrow: Story = { render: (args: any) => , args: { className: 'bg-gray-300 p-4', children: ( <> Container with narrow width ), width: 'narrow', }, }; export const Default: Story = { args: { className: 'bg-gray-300 p-4', children: ( <> Container with default width ), width: 'default', }, }; export const Layout: Story = { args: { className: 'bg-gray-300 p-4', children: ( <> Container with layout width ), width: 'layout', }, }; export const FullWidth: Story = { render: (args: any) => , args: { className: 'bg-gray-300 p-4', children: ( <> Container with full width ), }, };