Skip to content

Commit

Permalink
test(web-client): add story for HomePage view
Browse files Browse the repository at this point in the history
  • Loading branch information
PiDelport committed Jun 29, 2021
1 parent 7b9f8f9 commit 6d77d9c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions web-client/src/app/views/home/home.page.stories.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/angular';
import { HomePage } from './home.page';

export default {
title: 'Views/HomePage',
component: HomePage,
} as Meta;

const Template: Story<HomePage> = (args: HomePage) => ({
props: args,
});

export const Default = Template.bind({});

0 comments on commit 6d77d9c

Please sign in to comment.