UNPKG

create-nextjs-storybook

Version:

Install embedded Storybook route into a NextJS project

17 lines (13 loc) 416 B
import type { Meta, StoryObj } from '@storybook/react'; import { Page } from './Page'; const meta = { title: 'Example/Page', component: Page, parameters: { // More on how to position stories at: https://storybook.js.org/docs/configure/story-layout layout: 'fullscreen', }, } satisfies Meta<typeof Page>; export default meta; type Story = StoryObj<typeof meta>; export const LoggedOut: Story = {};