mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
And change semantics: `docsPage:true` = `autodocs: 'tag'` and `docsPage: 'automatic'` = `autodocs: true`.
24 lines
614 B
TypeScript
24 lines
614 B
TypeScript
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
import type { HeaderProps } from './Header';
|
|
import { Header } from './Header';
|
|
|
|
const meta: Meta<HeaderProps> = {
|
|
title: 'Example/Header',
|
|
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/7.0/web-components/writing-docs/docs-page
|
|
tags: ['autodocs'],
|
|
render: (args: HeaderProps) => Header(args),
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<HeaderProps>;
|
|
|
|
export const LoggedIn: Story = {
|
|
args: {
|
|
user: {
|
|
name: 'Jonh Doe',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const LoggedOut: Story = {};
|