import { Field } from '@rocket.chat/fuselage'; import { action } from '@storybook/addon-actions'; import React from 'react'; import BooleanSettingInput from './BooleanSettingInput'; export default { title: 'admin/settings/inputs/BooleanSettingInput', component: BooleanSettingInput, decorators: [(storyFn) => {storyFn()}], }; export const _default = () => ; export const disabled = () => ; export const checked = () => ; export const withResetButton = () => ( );