UNPKG
@pablo-amberflo/ui-kit-test
Version:
latest (1.0.14)
1.0.14
Amberflo UI Kit
@pablo-amberflo/ui-kit-test
/
src
/
stories
/
AppComponent.stories.jsx
11 lines
(7 loc)
•
242 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
"react"
;
import
{ storiesOf }
from
"@storybook/react"
;
import
{
StyledComponent
}
from
"../components"
;
const
stories =
storiesOf
(
"App test"
,
module
); stories.
add
(
"AppComponent"
,
() =>
{
return
<
StyledComponent
/>
; });