import { forwardRef} from "react";

const TextInput = forwardRef((props, ref) => <input type="text" ref={ref} />);
export default TextInput;