UNPKG
nes.css
Version:
latest (2.3.0)
2.3.0
2.2.1
2.2.0
2.1.1
2.1.0
2.0.0
1.0.0
0.0.2
0.0.1
NES.css is NES-style CSS Framework.
github.com/nostalgic-css/NES.css
nostalgic-css/NES.css
nes.css
/
story
/
select
/
select.stories.js
9 lines
(6 loc)
•
229 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ storiesOf }
from
'@storybook/html'
;
import
{ withKnobs }
from
'@storybook/addon-knobs'
;
import
Select
from
'./select.template'
;
storiesOf
(
'Selects'
,
module
) .
addDecorator
(withKnobs) .
add
(
'Select'
,
() =>
Select
());