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