Expose dials and knobs for your components in design tools
npm install property-controls``sh`
yarn add property-controls
`js
import { ControlType, applyPropertyControls } from 'property-controls'
export const Component = ({ isTomato, ...props }) => (
applyPropertyControls(Component, {
isTomato: {
type: ControlType.Boolean,
title: 'Tomato'
}
})
``