19 lines
334 B
TypeScript
19 lines
334 B
TypeScript
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: {
|
|
}
|
|
};
|
|
|