setup React Storybook; add example story for LoadingIndicator component

This commit is contained in:
Kai Schaper 2016-10-11 03:21:06 +02:00
parent 77efdfa110
commit 71e7537330
4 changed files with 29 additions and 4 deletions

View file

@ -0,0 +1,6 @@
import LoadingIndicator from '../../app/assets/javascripts/components/components/loading_indicator.jsx'
storiesOf('LoadingIndicator', module)
.add('default state', () => (
<LoadingIndicator />
));