21a7fc1b54
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>
14 lines
356 B
TypeScript
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 = {};
|