// // Copyright 2026 DXOS.org // import { type Meta, type StoryObj } from '@storybook/react-vite'; import React from 'react'; import { withLayout, withTheme } from '../../testing'; import { Container } from './Container'; const DefaultStory = () => (
Hello
); const meta: Meta = { title: 'ui/react-ui-core/primitives/Container', component: Container, render: DefaultStory, decorators: [withTheme(), withLayout({ layout: 'column' })], parameters: { layout: 'fullscreen' }, }; export default meta; type Story = StoryObj; export const Default: Story = {};