import { PixelAccordion } from '../navigation';
const SAMPLE_ITEMS = [
{
id: 'overview',
title: 'Overview',
content: 'Introductory section that opens by default.',
},
{
id: 'details',
title: 'Details',
content: 'Secondary section with extended copy.',
},
{
id: 'faq',
title: 'FAQ',
content: 'Common questions and short answers.',
},
];
export function Default() {
return
Pass collapsedByDefault to keep every item closed on
first render.