Skip to content

Commit

Permalink
[add]SignInView,SignUpView #860
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryotakobayash authored and Kubosaka committed Jul 27, 2024
1 parent e1ab352 commit 2ea7dfb
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
24 changes: 24 additions & 0 deletions view/next-project/src/stories/auth/SignInView.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { Meta, StoryFn } from '@storybook/react';
import { RecoilRoot } from 'recoil';
import { SignInView } from '@components/auth';

const meta: Meta<typeof SignInView> = {
title: 'FinanSu/auth/SignInView',
component: SignInView,
decorators: [
(Story) => (
<RecoilRoot>
<Story />
</RecoilRoot>
),
],
tags: ['autodocs'],
argTypes: {},
};

export default meta;

const Template: StoryFn<typeof SignInView> = () => <SignInView />;

export const Primary = Template.bind({});
Primary.args = {};
24 changes: 24 additions & 0 deletions view/next-project/src/stories/auth/SignUpView.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { Meta, StoryFn } from '@storybook/react';
import { RecoilRoot } from 'recoil';
import { SignUpView } from '@components/auth';

const meta: Meta<typeof SignUpView> = {
title: 'FinanSu/auth/SignUpView',
component: SignUpView,
decorators: [
(Story) => (
<RecoilRoot>
<Story />
</RecoilRoot>
),
],
tags: ['autodocs'],
argTypes: {},
};

export default meta;

const Template: StoryFn<typeof SignUpView> = () => <SignUpView />;

export const Primary = Template.bind({});
Primary.args = {};

0 comments on commit 2ea7dfb

Please sign in to comment.