storybook components tree

This commit is contained in:
Tykayn 2025-10-14 10:28:09 +02:00 committed by tykayn
parent 2f9f4527e8
commit 45b92e145c
41 changed files with 490 additions and 689 deletions

View file

@ -0,0 +1,14 @@
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: () => ({}) };