17 lines
364 B
TypeScript
17 lines
364 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react";
|
|
import Component from "./StaticLogoHeader";
|
|
|
|
const meta: Meta<typeof Component> = {
|
|
title: "Components/StaticLogoHeader",
|
|
component: Component,
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof Component>;
|
|
|
|
export const Default: Story = {
|
|
render: (args) => <Component {...args} />,
|
|
args: {},
|
|
};
|