import { h } from 'preact';
import PropTypes from 'prop-types';
import { Button } from '@crayons';
const SettingsFrom = ({
channelDescription,
handleDescriptionChange,
channelDiscoverable,
handleChannelDiscoverableStatus,
handleChannelDescriptionChanges,
}) => {
return (
Channel Settings
);
};
SettingsFrom.propTypes = {
channelDescription: PropTypes.string.isRequired,
handleDescriptionChange: PropTypes.func.isRequired,
handleChannelDiscoverableStatus: PropTypes.func.isRequired,
handleChannelDescriptionChanges: PropTypes.func.isRequired,
channelDiscoverable: PropTypes.bool.isRequired,
};
export default SettingsFrom;