import type { Meta, StoryObj } from '@storybook/web-components-vite'; import { html } from 'lit'; import type { USAAccordionElement } from './accordion.element.js'; // More on how to set up stories at: https://storybook.js.org/docs/writing-stories const meta = { title: 'usa-accordion', tags: ['autodocs'], render(args) { return html`

First Ammendment

Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the Government for a redress of grievances.

Second Ammendment

A well regulated Militia, being necessary to the security of a free State, the right of the people to keep and bear Arms, shall not be infringed.

Third Ammendment

No Soldier shall, in time of peace be quartered in any house, without the consent of the Owner, nor in time of war, but in a manner to be prescribed by law.
`; }, argTypes: {}, args: { name: 'ammendment', }, } satisfies Meta; export default meta; type Story = StoryObj; // More on writing stories with args: https://storybook.js.org/docs/writing-stories/args export const Primary: Story = { args: {}, };