19 lines
542 B
TypeScript
19 lines
542 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react-vite";
|
|
import { DashboardHeader } from "../components/DashboardHeader";
|
|
import { moduleBlocks } from "./story-data";
|
|
|
|
const meta = {
|
|
title: "UI/DashboardHeader",
|
|
component: DashboardHeader,
|
|
args: {
|
|
eyebrow: "Preview Surface",
|
|
title: "Operations Console",
|
|
subtitle: "Generic dashboard header",
|
|
module: moduleBlocks.compact,
|
|
},
|
|
} satisfies Meta<typeof DashboardHeader>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const WithModule: Story = {};
|