mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
11 lines
293 B
JavaScript
11 lines
293 B
JavaScript
import React from 'react';
|
|
import base from 'paths.macro';
|
|
|
|
import BaseButton from '../components/BaseButton';
|
|
|
|
export const story1 = () => <BaseButton label="Story 1" />;
|
|
story1.storyName = 'story 1';
|
|
|
|
export const story2 = () => <BaseButton label="Story 2" />;
|
|
story2.storyName = 'story 2';
|