e248e0073d
I had to downgrade Vite because the Storybook builder does not support v5 yet. Therefore this will be on a separate branch and updated as we move along with the codebase. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
26 lines
641 B
TypeScript
26 lines
641 B
TypeScript
import type { Meta, StoryObj } from '@storybook/svelte';
|
|
import Header from './Header.svelte';
|
|
|
|
const meta = {
|
|
title: 'Example/Header',
|
|
component: Header,
|
|
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
// More on how to position stories at: https://storybook.js.org/docs/configure/story-layout
|
|
layout: 'fullscreen'
|
|
}
|
|
} satisfies Meta<Header>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const LoggedIn: Story = {
|
|
args: {
|
|
user: {
|
|
name: 'Jane Doe'
|
|
}
|
|
}
|
|
};
|
|
|
|
export const LoggedOut: Story = {};
|