'use client'; import React from "react"; interface TextInputProps { input: string; setInput: (v: string) => void; classify: (input: string) => void; ready: boolean | null; } export const TextInput = ({ input, setInput, classify, ready }: TextInputProps) => { return (