Anvil/stories/templates/ImportProject.stories.ts
André Jaenisch 21a7fc1b54
docs: create Stories for new pages and templates
I also extracted the Icons we use into a story and looked into how I
could potentially allow for changing the locale.

Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
2024-07-04 08:21:35 +02:00

14 lines
356 B
TypeScript

import type { Meta, StoryObj } from '@storybook/svelte';
import ImportProject from '$lib/components/templates/ImportProject.svelte';
const meta = {
title: 'Templates/ImportProject',
component: ImportProject,
tags: ['autodocs']
} satisfies Meta<ImportProject>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Plain: Story = {};