-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(web-client): add stub stories for new views
- Loading branch information
Showing
5 changed files
with
65 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,13 @@ | ||
import { Meta, Story } from '@storybook/angular'; | ||
import { LandingPage } from './landing.page'; | ||
|
||
export default { | ||
title: 'Views/LandingPage', | ||
component: LandingPage, | ||
} as Meta; | ||
|
||
const Template: Story<LandingPage> = (args: LandingPage) => ({ | ||
props: args, | ||
}); | ||
|
||
export const Default = 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 @@ | ||
import { Meta, Story } from '@storybook/angular'; | ||
import { LoginPage } from './login.page'; | ||
|
||
export default { | ||
title: 'Views/LoginPage', | ||
component: LoginPage, | ||
} as Meta; | ||
|
||
const Template: Story<LoginPage> = (args: LoginPage) => ({ | ||
props: args, | ||
}); | ||
|
||
export const Default = Template.bind({}); |
13 changes: 13 additions & 0 deletions
13
web-client/src/app/views/register/register.page.stories.ts
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 @@ | ||
import { Meta, Story } from '@storybook/angular'; | ||
import { RegisterPage } from './register.page'; | ||
|
||
export default { | ||
title: 'Views/RegisterPage', | ||
component: RegisterPage, | ||
} as Meta; | ||
|
||
const Template: Story<RegisterPage> = (args: RegisterPage) => ({ | ||
props: args, | ||
}); | ||
|
||
export const Default = Template.bind({}); |
13 changes: 13 additions & 0 deletions
13
web-client/src/app/views/send-funds/send-funds.page.stories.ts
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 @@ | ||
import { Meta, Story } from '@storybook/angular'; | ||
import { SendFundsPage } from './send-funds.page'; | ||
|
||
export default { | ||
title: 'Views/SendFundsPage', | ||
component: SendFundsPage, | ||
} as Meta; | ||
|
||
const Template: Story<SendFundsPage> = (args: SendFundsPage) => ({ | ||
props: args, | ||
}); | ||
|
||
export const Default = 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 @@ | ||
import { Meta, Story } from '@storybook/angular'; | ||
import { WalletPage } from './wallet.page'; | ||
|
||
export default { | ||
title: 'Views/WalletPage', | ||
component: WalletPage, | ||
} as Meta; | ||
|
||
const Template: Story<WalletPage> = (args: WalletPage) => ({ | ||
props: args, | ||
}); | ||
|
||
export const Default = Template.bind({}); |