import type { Meta, StoryObj } from '@storybook/html-vite'; export default { title: 'Components/RadioButtons' } satisfies Meta; export const Default: StoryObj = { render() { return `

`; } }; export const WithGap: StoryObj = { render() { return `

`; } };