Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | import type { Meta, StoryObj } from '@storybook/nextjs' import { fn } from 'storybook/test' import { Header } from './Header' 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', }, args: { onLogin: fn(), onLogout: fn(), onCreateAccount: fn(), }, } satisfies Meta<typeof Header> export default meta type Story = StoryObj<typeof meta> export const LoggedIn: Story = { args: { user: { name: 'Jane Doe', }, }, } export const LoggedOut: Story = {} |