@@ -8,9 +8,6 @@ import { muiTheme } from 'storybook-addon-material-ui';
88import { WithNotes } from '@kadira/storybook-addon-notes' ;
99import { withKnobs , text , boolean , number } from '@kadira/storybook-addon-knobs' ;
1010
11- //import decorator from '../../src/store/decorator';
12- import { addonDecorator , globalDecorator } from '../../setup/' ;
13-
1411import App from '../App' ;
1512import Header from '../Header' ;
1613import Intro from '../Intro' ;
@@ -29,7 +26,6 @@ reqThemes.keys().forEach((filename) => {
2926 * You can pass a single object or an array of themes
3027 */
3128
32- globalDecorator ( 'Global decorator' ) ;
3329
3430storiesOf ( 'No decorator' , module )
3531 . add ( 'Example1' , ( ) => (
@@ -42,9 +38,10 @@ storiesOf('No decorator', module)
4238 < Button title = "no decor 2" />
4339 </ div >
4440 ) )
41+ . querry ( )
42+
4543
4644storiesOf ( 'Podda App1' , module )
47- . addDecorator ( addonDecorator ( 'Decor111' ) )
4845 . add ( 'Example1' , ( ) => (
4946 < div className = "example-component" >
5047 < Button title = "Example 1" />
@@ -57,7 +54,6 @@ storiesOf('Podda App1', module)
5754 ) ) ;
5855
5956storiesOf ( 'Podda App2' , module )
60- . addDecorator ( addonDecorator ( 'Decor222' ) )
6157 . add ( 'Example3' , ( ) => (
6258 < div className = "example-component" >
6359 < Button title = "Example 3" />
0 commit comments