-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
93 additions
and
53 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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
import { ComponentMeta, ComponentStory } from "@storybook/react"; | ||
import * as React from "react"; | ||
import { ComponentMeta, ComponentStory } from '@storybook/react'; | ||
|
||
import { Error404 } from "."; | ||
import { Error404 } from '.'; | ||
|
||
export default { | ||
title: "Error404", | ||
title: 'Error404', | ||
component: Error404, | ||
} as ComponentMeta<typeof Error404>; | ||
|
||
const Template: ComponentStory<typeof Error404> = (args) => <Error404 {...args} />; | ||
const Template: ComponentStory<typeof Error404> = (args) => ( | ||
<Error404 {...args} /> | ||
); | ||
|
||
export const Default = Template.bind({}); | ||
Default.args = {}; | ||
Default.args = {}; |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export * from "./Error404" | ||
export * from './Error404'; |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export * from "./Overlay" | ||
export * from './Overlay'; |
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
import { ComponentMeta, ComponentStory } from "@storybook/react"; | ||
import * as React from "react"; | ||
import { ComponentMeta, ComponentStory } from '@storybook/react'; | ||
import * as React from 'react'; | ||
|
||
import { Overlay } from "."; | ||
import { Overlay } from '.'; | ||
|
||
export default { | ||
title: "Overlay", | ||
title: 'Overlay', | ||
component: Overlay, | ||
} as ComponentMeta<typeof Overlay>; | ||
|
||
const Template: ComponentStory<typeof Overlay> = (args) => <Overlay {...args} />; | ||
const Template: ComponentStory<typeof Overlay> = (args) => ( | ||
<Overlay {...args} /> | ||
); | ||
|
||
export const Default = Template.bind({}); | ||
Default.args = {}; | ||
Default.args = {}; |
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
export * from "./Providers" | ||
export * from './Providers'; |
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
import { ComponentMeta, ComponentStory } from "@storybook/react"; | ||
import * as React from "react"; | ||
import { ComponentMeta, ComponentStory } from '@storybook/react'; | ||
import * as React from 'react'; | ||
|
||
import { Providers } from "."; | ||
import { Providers } from '.'; | ||
|
||
export default { | ||
title: "Providers", | ||
title: 'Providers', | ||
component: Providers, | ||
} as ComponentMeta<typeof Providers>; | ||
|
||
const Template: ComponentStory<typeof Providers> = (args) => <Providers {...args} />; | ||
const Template: ComponentStory<typeof Providers> = (args) => ( | ||
<Providers {...args} /> | ||
); | ||
|
||
export const Default = Template.bind({}); | ||
Default.args = {}; | ||
Default.args = {}; |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export * from "./ScrollToTop" | ||
export * from './ScrollToTop'; |
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
import { ComponentMeta, ComponentStory } from "@storybook/react"; | ||
import * as React from "react"; | ||
import { ComponentMeta, ComponentStory } from '@storybook/react'; | ||
import * as React from 'react'; | ||
|
||
import { ScrollToTop } from "."; | ||
import { ScrollToTop } from '.'; | ||
|
||
export default { | ||
title: "ScrollToTop", | ||
title: 'ScrollToTop', | ||
component: ScrollToTop, | ||
} as ComponentMeta<typeof ScrollToTop>; | ||
|
||
const Template: ComponentStory<typeof ScrollToTop> = (args) => <ScrollToTop {...args} />; | ||
const Template: ComponentStory<typeof ScrollToTop> = (args) => ( | ||
<ScrollToTop {...args} /> | ||
); | ||
|
||
export const Default = Template.bind({}); | ||
Default.args = {}; | ||
Default.args = {}; |
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
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
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
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