Skip to content

Commit

Permalink
refactor: take into account the component deprecation in angular cli
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaudAV committed Dec 8, 2020
1 parent f4d4169 commit 5210e22
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion lib/cli/src/frameworks/angular/Button.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export default {
} as Meta;

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

Expand Down
1 change: 0 additions & 1 deletion lib/cli/src/frameworks/angular/Header.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export default {
} as Meta;

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

Expand Down
3 changes: 1 addition & 2 deletions lib/cli/src/frameworks/angular/Page.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as HeaderStories from './Header.stories';

export default {
title: 'Example/Page',
component: Header,
component: Page,
decorators: [
moduleMetadata({
declarations: [Button, Header],
Expand All @@ -21,7 +21,6 @@ export default {
} as Meta;

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

Expand Down

0 comments on commit 5210e22

Please sign in to comment.