import * as React from 'react'; interface Props { htmlFor: string|null; text: string; } const SettingLabel: React.FC = props => { return (
); }; export default SettingLabel;