import React from 'react'; import type { Meta, StoryObj } from '@storybook/react'; import { Container } from '.'; const meta = { title: 'UI/Container', component: Container, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { args: { style: { background: 'white' }, children: (
Content
), }, decorators: [ (Story) => (
), ], };