Test: PageLayout 스토리북 코드 추가
This commit is contained in:
parent
01baf090f2
commit
95e9af7ff1
19
frontend/src/components/PageLayout/index.stories.tsx
Normal file
19
frontend/src/components/PageLayout/index.stories.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import '@/index.css';
|
||||
import { Meta, StoryObj } from '@storybook/react';
|
||||
import PageLayout from '.';
|
||||
|
||||
const meta: Meta<typeof PageLayout> = {
|
||||
title: 'Layout/PageLayout',
|
||||
component: PageLayout,
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
};
|
||||
|
||||
export default meta;
|
||||
|
||||
type Story = StoryObj<typeof PageLayout>;
|
||||
|
||||
export const Default: Story = {
|
||||
render: () => <PageLayout></PageLayout>,
|
||||
};
|
Loading…
Reference in New Issue
Block a user