16 lines
403 B
TypeScript
16 lines
403 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react-vite";
|
|
import { WeatherModule } from "../index";
|
|
import { moduleBlocks } from "./story-data";
|
|
|
|
const meta = {
|
|
title: "UI/WeatherModule",
|
|
component: WeatherModule,
|
|
args: {
|
|
module: moduleBlocks.compact,
|
|
},
|
|
} satisfies Meta<typeof WeatherModule>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Default: Story = {};
|