UNPKG

ds-smart-ui

Version:

Smart UI is a React component library that helps you build accessible and responsive web applications.

19 lines (17 loc) 651 B
import { StoryObj } from '@storybook/react'; declare const meta: { component: ({ user, onLogin, onLogout, onCreateAccount, }: import('./Header').HeaderProps) => import("react/jsx-runtime").JSX.Element; tags: string[]; parameters: { layout: string; }; args: { onLogin: import('@vitest/spy').Mock<(...args: any[]) => any>; onLogout: import('@vitest/spy').Mock<(...args: any[]) => any>; onCreateAccount: import('@vitest/spy').Mock<(...args: any[]) => any>; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const LoggedIn: Story; export declare const LoggedOut: Story;