mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 11:01:07 +08:00
34 lines
814 B
TypeScript
34 lines
814 B
TypeScript
import type { Meta, StoryObj } from '@storybook/angular';
|
|
import { fn } from 'storybook/test';
|
|
|
|
import { HeaderComponent } from './header.component';
|
|
|
|
const meta: Meta<HeaderComponent> = {
|
|
title: 'Example/Header',
|
|
component: HeaderComponent,
|
|
// 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',
|
|
},
|
|
args: {
|
|
onLogin: fn(),
|
|
onLogout: fn(),
|
|
onCreateAccount: fn(),
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<HeaderComponent>;
|
|
|
|
export const LoggedIn: Story = {
|
|
args: {
|
|
user: {
|
|
name: 'Jane Doe',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const LoggedOut: Story = {};
|