UNPKG
tako-custom-components
Version:
latest (0.0.2-rc4)
0.0.2
0.0.2-rc4
0.0.2-rc3
0.0.2-rc2
0.0.1
install ```bash npm i tako-custom-components ```
portafolio-thomas-koczan.vercel.app
tako-custom-components
/
dist
/
stories
/
Header.stories.d.ts
8 lines
(7 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
Meta
,
StoryObj
}
from
'@storybook/react'
;
import
{
type
HeaderProps
}
from
'./Header'
;
declare
const
meta
:
Meta
<
HeaderProps
>;
export
default
meta;
type
Story
=
StoryObj
<
typeof
meta>;
export
declare
const
LoggedIn
:
Story
;
export
declare
const
LoggedOut
:
Story
;