```ts // Button.stories.ts import { Button } from './button.component'; export default { component: Button, //👇 Title is optional, you can omit it and Storybook automatically generates the title for the story title: 'Components/Button', }; ```