move message box style inside component
This commit is contained in:
parent
681d8ecb0b
commit
e6d85c7257
5 changed files with 130 additions and 90 deletions
|
@ -1,4 +1,7 @@
|
|||
import type {Preview} from '@storybook/angular';
|
||||
import {moduleMetadata} from '@storybook/angular';
|
||||
import {Store, StoreModule} from '@ngrx/store';
|
||||
import {reducers} from '../src/app/reducers';
|
||||
// import 'remixicon/fonts/remixicon.css';
|
||||
|
||||
const preview: Preview = {
|
||||
|
@ -11,6 +14,16 @@ const preview: Preview = {
|
|||
},
|
||||
},
|
||||
},
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
imports: [
|
||||
StoreModule.forRoot(reducers),
|
||||
],
|
||||
providers: [
|
||||
Store
|
||||
]
|
||||
})
|
||||
]
|
||||
};
|
||||
|
||||
export default preview;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue