```tsx // MyComponent.story.ts|tsx import type { Meta, StoryObj } from '@storybook/react'; import { MyComponent } from './MyComponent'; const meta = { /* 👇 The title prop is optional. * See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading * to learn how to generate automatic titles */ title: 'Path/To/MyComponent', component: MyComponent, } satisfies Meta; export default meta; type Story = StoryObj; export const Basic: Story = {}; export const WithProp: Story = { render: () => , }; ```