Skip to content

Commit

Permalink
chore(web-client): add stub stories for new views
Browse files Browse the repository at this point in the history
  • Loading branch information
PiDelport committed Jul 12, 2021
1 parent d56b867 commit 59b54eb
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 0 deletions.
13 changes: 13 additions & 0 deletions web-client/src/app/views/landing/landing.page.stories.ts
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({});
13 changes: 13 additions & 0 deletions web-client/src/app/views/login/login.page.stories.ts
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 web-client/src/app/views/register/register.page.stories.ts
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 web-client/src/app/views/send-funds/send-funds.page.stories.ts
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({});
13 changes: 13 additions & 0 deletions web-client/src/app/views/wallet/wallet.page.stories.ts
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({});

0 comments on commit 59b54eb

Please sign in to comment.