import type { Meta, StoryObj } from "@storybook/react"; import { DataImporter } from "."; const meta: Meta = { title: "Example/DataImporter", component: DataImporter, }; type Story = StoryObj; export const Primary: Story = { render: () => ( ), }; export default meta;