developerasun / myCodeBox-web

Open source code box for web developers.
Apache License 2.0
5 stars 0 forks source link

Storybook : adding control to configuration #175

Open developerasun opened 2 years ago

developerasun commented 2 years ago

issue : Storybook control panel not enabled

in Storybook app,

control-configure

developerasun commented 2 years ago

solution : added below codes to .stories.js file

export default {
    title : 'Button',
    component : Button, 
    argTypes : {
        variant : {
            options : ['primary', 'secondary', 'success', 'danger'],
            control : { type : 'select' }
        }
    }
developerasun commented 2 years ago

sub issue : control enable but value not changing

in Storybook app,

variant-control

developerasun commented 2 years ago

read this