This repository has been archived by the owner on May 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
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,17 @@ | ||
//@ts-check | ||
import PostsLayout from './PostsLayout' | ||
|
||
export const generated = (args) => { | ||
return ( | ||
<PostsLayout {...args}> | ||
<></> | ||
</PostsLayout> | ||
) | ||
} | ||
|
||
export default { | ||
title: 'Layouts/PostsLayout', | ||
parameters: { | ||
layout: 'fullscreen', | ||
}, | ||
} |
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,13 @@ | ||
//@ts-check | ||
import FatalErrorPage from './FatalErrorPage' | ||
|
||
export default { | ||
title: 'Pages/FatalErrorPage', | ||
component: FatalErrorPage, | ||
parameters: { | ||
layout: 'fullscreen', | ||
}, | ||
} | ||
const Template = (args) => <FatalErrorPage {...args} /> | ||
|
||
export const generated = Template.bind({}) |
13 changes: 13 additions & 0 deletions
13
web/src/pages/ForgotPasswordPage/ForgotPasswordPage.stories.js
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,13 @@ | ||
//@ts-check | ||
import ForgotPasswordPage from './ForgotPasswordPage' | ||
|
||
export default { | ||
title: 'Pages/ForgotPasswordPage', | ||
component: ForgotPasswordPage, | ||
parameters: { | ||
layout: 'fullscreen', | ||
}, | ||
} | ||
const Template = (args) => <ForgotPasswordPage {...args} /> | ||
|
||
export const generated = Template.bind({}) |
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,13 @@ | ||
//@ts-check | ||
import NotFoundPage from './NotFoundPage' | ||
|
||
export default { | ||
title: 'Pages/NotFoundPage', | ||
component: NotFoundPage, | ||
parameters: { | ||
layout: 'fullscreen', | ||
}, | ||
} | ||
const Template = (args) => <NotFoundPage {...args} /> | ||
|
||
export const generated = Template.bind({}) |
13 changes: 13 additions & 0 deletions
13
web/src/pages/ResetPasswordPage/ResetPasswordPage.stories.js
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,13 @@ | ||
//@ts-check | ||
import ResetPasswordPage from './ResetPasswordPage' | ||
|
||
export default { | ||
title: 'Pages/ResetPasswordPage', | ||
component: ResetPasswordPage, | ||
parameters: { | ||
layout: 'fullscreen', | ||
}, | ||
} | ||
const Template = (args) => <ResetPasswordPage {...args} /> | ||
|
||
export const generated = Template.bind({}) |