import React, { FunctionComponent } from 'react'; import globalize from '../../../scripts/globalize'; const createInputElement = ({ type, id, label, options }: { type?: string, id?: string, label?: string, options?: string }) => ({ __html: `` }); type IProps = { type?: string; id?: string; label?: string; options?: string } const InputElement: FunctionComponent = ({ type, id, label, options }: IProps) => { return (
); }; export default InputElement;