function TextBox({ text }: { text: string }) { return (
{text}
); } export default TextBox;