Skip to content

Commit

Permalink
removed unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
rengare committed Jan 25, 2020
1 parent 05d75b9 commit 86099da
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/stories/checkbox/fd-checkbox.stories.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { moduleMetadata } from '@storybook/angular';
import { action } from '@storybook/addon-actions';
import { withKnobs, text, radios, array, boolean } from '@storybook/addon-knobs';
import { withKnobs, boolean } from '@storybook/addon-knobs';
import { withA11y } from '@storybook/addon-a11y';
import { FormGroup, FormControl, ReactiveFormsModule } from '@angular/forms';
import { CheckboxComponent, CheckboxModule } from '@fundamental-ngx/core';
import { ReactiveFormsModule } from '@angular/forms';

import { CheckboxComponent, CheckboxModule } from 'libs/core/src/lib/checkbox/public_api';

export default {
title: 'Fd checkbox',
Expand Down
1 change: 1 addition & 0 deletions src/stories/radio/fd-radio-button.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { action } from '@storybook/addon-actions';
import { withKnobs, text, radios, array } from '@storybook/addon-knobs';
import { withA11y } from '@storybook/addon-a11y';
import { FormGroup, FormControl, ReactiveFormsModule } from '@angular/forms';

import { RadioModule, RadioButtonComponent } from 'libs/core/src/lib/radio/public_api';

export default {
Expand Down
5 changes: 2 additions & 3 deletions src/stories/toggle/fd-toggle.stories.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { moduleMetadata } from '@storybook/angular';
import { action } from '@storybook/addon-actions';
import { withKnobs, text, radios, array, select, boolean } from '@storybook/addon-knobs';
import { withKnobs, text, select, boolean } from '@storybook/addon-knobs';
import { withA11y } from '@storybook/addon-a11y';
import { FormGroup, FormControl, ReactiveFormsModule } from '@angular/forms';

import { ToggleComponent, ToggleModule } from 'libs/core/src/lib/toggle/public_api';

Expand All @@ -14,7 +13,7 @@ export default {
withKnobs,
withA11y,
moduleMetadata({
imports: [ToggleModule, ReactiveFormsModule],
imports: [ToggleModule],
declarations: []
})
]
Expand Down

0 comments on commit 86099da

Please sign in to comment.