veza/apps/web/src/components/developer/APIPlaygroundView.stories.tsx
2026-02-07 15:10:32 +01:00

21 lines
599 B
TypeScript

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