```ts // Button.stories.ts import { action } from '@storybook/addon-actions'; import { Button } from './button.component'; export default { component: Button, }; export const Text = { args: { label: 'Hello', onClick: action('clicked'), }, render: (args) => ({ props: args, template: ``, }), }; ```