wedding-planner-frontend/stories/Table.stories.tsx

19 lines
334 B
TypeScript
Raw Normal View History

2024-11-01 12:50:19 +01:00
import React from 'react';
import type { Meta, StoryObj } from '@storybook/react';
import {Table as TableComponent} from '../app/ui/components/table';
const meta = {
title: 'Example/Table',
component: TableComponent,
}
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
args: {
}
};