mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
import { Button } from './button';
|
|
|
|
export default {
|
|
component: Button,
|
|
title: 'button2',
|
|
};
|
|
|
|
export const one = { args: { label: 'one' } };
|
|
export const two = { args: { label: 'two' } };
|
|
export const three = { args: { label: 'three' } };
|