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