8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
import { storiesOf } from '@storybook/react';
|
|
import TextLabel from '.';
|
|
|
|
storiesOf('TextLabel', module)
|
|
.add('Pure', () => (
|
|
<TextLabel />
|
|
))
|
|
|