UNPKG
yoda-common-boilerplate
Version:
latest (1.0.0)
1.0.0
Repository of all JCP reusable atoms, molecules and organisms
yoda-common-boilerplate
/
src
/
atoms
/
Label
/
__stories
/
index.jsx
17 lines
(14 loc)
•
289 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
React
from
'react'
;
import
Label
from
'../Label'
;
const
stories = [ {
name
:
'Label'
,
story
:
() =>
{
const
labelClass =
'default'
;
return
(
<
h1
>
Label
<
Label
className
=
{labelClass}
children
=
"Label"
/>
</
h1
>
); } } ];
export
default
stories;