aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/stories/loader.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'uidev/src/stories/loader.stories.tsx')
-rw-r--r--uidev/src/stories/loader.stories.tsx11
1 files changed, 5 insertions, 6 deletions
diff --git a/uidev/src/stories/loader.stories.tsx b/uidev/src/stories/loader.stories.tsx
index ad38dffe8..bbe4d3421 100644
--- a/uidev/src/stories/loader.stories.tsx
+++ b/uidev/src/stories/loader.stories.tsx
@@ -1,9 +1,8 @@
1import { Loader } from '@meetfranz/ui'; 1import { Loader } from '@meetfranz/ui';
2import { storiesOf } from '../stores/stories'; 2import { storiesOf } from '../stores/stories';
3 3
4storiesOf('Loader') 4storiesOf('Loader').add('Basic', () => (
5 .add('Basic', () => ( 5 <>
6 <> 6 <Loader />
7 <Loader /> 7 </>
8 </> 8));
9 ));