mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
17 lines
313 B
JavaScript
17 lines
313 B
JavaScript
import React from 'react';
|
|
import base from 'paths.macro';
|
|
|
|
import BaseButton from '../components/BaseButton';
|
|
|
|
export const story1 = () => <BaseButton label="Story 1" />;
|
|
|
|
story1.story = {
|
|
name: 'story 1',
|
|
};
|
|
|
|
export const story2 = () => <BaseButton label="Story 2" />;
|
|
|
|
story2.story = {
|
|
name: 'story 2',
|
|
};
|