15 lines
348 B
TypeScript
15 lines
348 B
TypeScript
|
import type { Meta, StoryObj } from '@storybook/svelte';
|
||
|
|
||
|
import ImportProject from '$lib/components/pages/ImportProject.svelte';
|
||
|
|
||
|
const meta = {
|
||
|
title: 'Pages/ImportProject',
|
||
|
component: ImportProject,
|
||
|
tags: ['autodocs']
|
||
|
} satisfies Meta<ImportProject>;
|
||
|
|
||
|
export default meta;
|
||
|
type Story = StoryObj<typeof meta>;
|
||
|
|
||
|
export const Plain: Story = {};
|