import * as React from 'react'; interface Props { text: string; id?: string; } const SettingDescription: React.FC = props => { return props.text ?
{props.text}
: null; }; export default SettingDescription;