UNPKG
create-nextjs-storybook
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Install embedded Storybook route into a NextJS project
create-nextjs-storybook
/
templates
/
app
/
js
/
Page.stories.js
13 lines
(10 loc)
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
Page
}
from
'./Page'
;
export
default
{
title
:
'Example/Page'
,
component
:
Page
,
parameters
: {
// More on how to position stories at: https://storybook.js.org/docs/configure/story-layout
layout
:
'fullscreen'
, }, };
export
const
LoggedOut
= {};