Files
Shifted/app/storefront/[accountId]/pay/page.stories.tsx
2026-02-10 01:14:19 +00:00

19 lines
435 B
TypeScript

import type { Meta, StoryObj } from "@storybook/react";
import Page from "./page";
const meta: Meta<typeof Page> = {
title: "Pages/storefront/[accountId]/pay",
component: Page,
};
export default meta;
type Story = StoryObj<typeof Page>;
export const Default: Story = {
render: () => {
globalThis.__STORYBOOK_SEARCH_PARAMS__ = { productId: "prod_123" };
return <Page params={{ accountId: "storeshifted" }} />;
},
};