We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee7dc9c commit 817ba61Copy full SHA for 817ba61
src/components/LoadingIndicator/LoadingIndicator.stories.js
@@ -11,5 +11,9 @@ const Wrapper = styled.div`
11
`;
12
storiesOf('LoadingIndicator', module)
13
.addDecorator(story => <Wrapper>{story()}</Wrapper>)
14
- .add('default', () => <LoadingIndicator />)
15
- .add('not loading', () => <LoadingIndicator isLoading={false} />);
+ .add('default', () => (
+ <>
16
+ <p style={{ textAlign: 'center', marginBottom: '0.5rem' }}>Loading...</p>
17
+ <LoadingIndicator isLoading />
18
+ </>
19
+ ));
0 commit comments