-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[add]Open(Add,Delete,Edit)ModalButton.stories.tsx
- Loading branch information
1 parent
c038cc4
commit 45ca4df
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
view/next-project/src/stories/teacher/OpenAddModalButton.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { Meta } from '@storybook/react'; | ||
import { OpenAddModalButton } from '@components/teacher'; | ||
|
||
const meta: Meta<typeof OpenAddModalButton> = { | ||
title: 'FinanSu/teacher/OpenAddModalButton', | ||
component: OpenAddModalButton, | ||
tags: ['autodocs'], | ||
argTypes: {}, | ||
}; | ||
|
||
export default meta; | ||
|
||
export const Primary = { | ||
args: { | ||
className: 'm-10', | ||
children: <h1>children</h1>, | ||
}, | ||
}; |
18 changes: 18 additions & 0 deletions
18
view/next-project/src/stories/teacher/OpenDeleteModalButton.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { Meta } from '@storybook/react'; | ||
import { OpenDeleteModalButton } from '@components/teacher'; | ||
|
||
const meta: Meta<typeof OpenDeleteModalButton> = { | ||
title: 'FinanSu/teacher/OpenDeleteModalButton', | ||
component: OpenDeleteModalButton, | ||
tags: ['autodocs'], | ||
argTypes: {}, | ||
}; | ||
|
||
export default meta; | ||
|
||
export const Primary = { | ||
args: { | ||
className: 'm-10', | ||
children: <h1>children</h1>, | ||
}, | ||
}; |
18 changes: 18 additions & 0 deletions
18
view/next-project/src/stories/teacher/OpenEditModalButton.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { Meta } from '@storybook/react'; | ||
import { OpenEditModalButton } from '@components/teacher'; | ||
|
||
const meta: Meta<typeof OpenEditModalButton> = { | ||
title: 'FinanSu/teacher/OpenEditModalButton', | ||
component: OpenEditModalButton, | ||
tags: ['autodocs'], | ||
argTypes: {}, | ||
}; | ||
|
||
export default meta; | ||
|
||
export const Primary = { | ||
args: { | ||
className: 'm-10', | ||
children: <h1>children</h1>, | ||
}, | ||
}; |