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