Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 9c32c42

Browse files
committed
Fix storybook names
1 parent 2ae5b54 commit 9c32c42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stories/component/spinner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ storiesOf('Spinner', module)
99
.addDecorator(story => (
1010
<MainContent style={{ justifyContent: 'center' }}>{story()}</MainContent>
1111
))
12-
.add('SmallSpinner', () => <SmallSpinner />);
12+
.add('Small Spinner', () => <SmallSpinner />);
1313

1414
storiesOf('Spinner', module)
1515
.addDecorator(story => (
1616
<Background color={color.blackDark}>{story()}</Background>
1717
))
18-
.add('LoadNetworkSpinner', () => (
18+
.add('Load Network Spinner', () => (
1919
<MainContent style={{ alignItems: 'flex-start', flexDirection: 'row' }}>
2020
<LoadNetworkSpinner percentage={30} msg="Loading network..." />
2121
<LoadNetworkSpinner percentage={50} msg="Almost done..." />

0 commit comments

Comments
 (0)