import React from "react"; import TextField from "@material-ui/core/TextField"; interface InputProps { label: string; onChange: (value: string) => void; multiline?: boolean; className?: string; } export default function Input(props: InputProps) { return (