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