mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:11:06 +08:00
30 lines
797 B
TypeScript
30 lines
797 B
TypeScript
import type { Meta, StoryFn } from '@storybook/html';
|
|
import type { HeaderProps } from './Header';
|
|
import { createHeader } from './Header';
|
|
|
|
export default {
|
|
title: 'Example/Header',
|
|
parameters: {
|
|
// More on Story layout: https://storybook.js.org/docs/html/configure/story-layout
|
|
layout: 'fullscreen',
|
|
},
|
|
// More on argTypes: https://storybook.js.org/docs/html/api/argtypes
|
|
argTypes: {
|
|
onLogin: { action: 'onLogin' },
|
|
onLogout: { action: 'onLogout' },
|
|
onCreateAccount: { action: 'onCreateAccount' },
|
|
},
|
|
} as Meta<HeaderProps>;
|
|
|
|
const Template: StoryFn<HeaderProps> = (args) => createHeader(args);
|
|
|
|
export const LoggedIn = Template.bind({});
|
|
LoggedIn.args = {
|
|
user: {
|
|
name: 'John Doe',
|
|
},
|
|
};
|
|
|
|
export const LoggedOut = Template.bind({});
|
|
LoggedOut.args = {};
|