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