Test: PageLayout 스토리북 코드 추가

This commit is contained in:
정현조 2024-09-09 15:00:37 +09:00
parent 01baf090f2
commit 95e9af7ff1

View 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>,
};