Essential addons
Control
설치
npm i -D @storybook/addon-controlsmodule.exports = {
addons: ['@storybook/addon-controls'],
};사용
export default {
title: 'Button',
argTypes: {
label: { control: 'text' },
borderWidth: { control: { type: 'number', min: 0, max: 10 } },
},
};Control Type
color
selector
참고
Control and proptypes

Last updated