From 2ea7dfb23c8fdd2dbe973d35db8bf57431562dde Mon Sep 17 00:00:00 2001 From: Ryotakobayash Date: Sat, 27 Jul 2024 17:49:21 +0900 Subject: [PATCH] [add]SignInView,SignUpView #860 --- .../src/stories/auth/SignInView.stories.tsx | 24 +++++++++++++++++++ .../src/stories/auth/SignUpView.stories.tsx | 24 +++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 view/next-project/src/stories/auth/SignInView.stories.tsx create mode 100644 view/next-project/src/stories/auth/SignUpView.stories.tsx 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 = {};