mirror of
https://github.com/fleetdm/fleet
synced 2026-05-02 10:57:25 +00:00
relates to #11002 Implements the UI for mdm macos setup end user authentication page.   - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. - [x] Manual QA for all new/changed functionality
15 lines
339 B
TypeScript
15 lines
339 B
TypeScript
import { Meta, StoryObj } from "@storybook/react";
|
|
|
|
import SectionHeader from ".";
|
|
|
|
const meta: Meta<typeof SectionHeader> = {
|
|
title: "Components/SectionHeader",
|
|
component: SectionHeader,
|
|
args: { title: "Section header title" },
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof SectionHeader>;
|
|
|
|
export const Basic: Story = {};
|