14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
import type { Meta, StoryObj } from '@storybook/angular';
|
|
import { Radio } from '../../app/composants/radio/radio';
|
|
|
|
const meta: Meta<Radio> = {
|
|
title: 'Components/Composants/Radio',
|
|
component: Radio,
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<Radio>;
|
|
|
|
export const Default: Story = { render: () => ({}) };
|
|
|
|
|