16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react";
|
|
import Page from "./page";
|
|
|
|
const meta: Meta<typeof Page> = {
|
|
title: "Pages/success",
|
|
component: Page,
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof Page>;
|
|
|
|
export const Default: Story = {
|
|
render: () => <Page />,
|
|
};
|