diff --git a/view/next-project/src/stories/auth/SignInView.stories.tsx b/view/next-project/src/stories/auth/SignInView.stories.tsx new file mode 100644 index 000000000..4aad2ad63 --- /dev/null +++ b/view/next-project/src/stories/auth/SignInView.stories.tsx @@ -0,0 +1,24 @@ +import { Meta, StoryFn } from '@storybook/react'; +import { RecoilRoot } from 'recoil'; +import { SignInView } from '@components/auth'; + +const meta: Meta = { + title: 'FinanSu/auth/SignInView', + component: SignInView, + decorators: [ + (Story) => ( + + + + ), + ], + tags: ['autodocs'], + argTypes: {}, +}; + +export default meta; + +const Template: StoryFn = () => ; + +export const Primary = Template.bind({}); +Primary.args = {}; diff --git a/view/next-project/src/stories/auth/SignUpView.stories.tsx b/view/next-project/src/stories/auth/SignUpView.stories.tsx new file mode 100644 index 000000000..11937dd88 --- /dev/null +++ b/view/next-project/src/stories/auth/SignUpView.stories.tsx @@ -0,0 +1,24 @@ +import { Meta, StoryFn } from '@storybook/react'; +import { RecoilRoot } from 'recoil'; +import { SignUpView } from '@components/auth'; + +const meta: Meta = { + title: 'FinanSu/auth/SignUpView', + component: SignUpView, + decorators: [ + (Story) => ( + + + + ), + ], + tags: ['autodocs'], + argTypes: {}, +}; + +export default meta; + +const Template: StoryFn = () => ; + +export const Primary = Template.bind({}); +Primary.args = {};