Echo 938f53a624 [Glitch] Profile editing: Finish image editing
Port 4328807f28f28eed7afbd650aef45f5bcd436d38 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2026-03-16 18:31:24 +01:00

30 lines
597 B
TypeScript

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: (
<p>
And here are the details that are hidden until you click the summary.
</p>
),
},
render(props) {
return (
<div style={{ width: '400px' }}>
<Details {...props} />
</div>
);
},
} satisfies Meta<typeof Details>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Plain: Story = {};