21 lines
565 B
TypeScript
21 lines
565 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
import { StudioView } from './StudioView';
|
|
|
|
const meta: Meta<typeof StudioView> = {
|
|
title: 'Components/Features/Views/StudioView',
|
|
component: StudioView,
|
|
parameters: { layout: 'fullscreen' },
|
|
tags: ['autodocs'],
|
|
decorators: [
|
|
(Story) => (
|
|
<div className="bg-kodo-background min-h-screen">
|
|
<Story />
|
|
</div>
|
|
),
|
|
],
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Default: Story = { name: 'Par défaut' };
|