import React from "react"; export default function TextInput({ value, setValue, label, className, }: { value: string; setValue: (newValue: string) => void; label: string; className?: string; }) { return ( ); }