import type { Meta, StoryObj } from '@storybook/react-vite'; import { Details } from './index'; const meta = { component: Details, title: 'Components/Details', args: { summary: 'Here is the summary title', children: (

And here are the details that are hidden until you click the summary.

), }, render(props) { return (
); }, } satisfies Meta; export default meta; type Story = StoryObj; export const Plain: Story = {};