/** * A customizable input field * @param props - Settings for the field * @returns {JSX.Element} The input field * @example * { * setExample(e.target.value); * }} * value={example} * /> */ function InputField(props: { label: string; type: string; value: string; onChange: (e: React.ChangeEvent) => void; }): JSX.Element { return (
); } export default InputField;