storybook/examples/react-ts/src/button2.stories.tsx

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' } };