'use client'; import styles from './page.module.css' type TextFieldProps = { onChange: (value: string) => void, placeholder?: string, }; export function TextField(props: TextFieldProps) { function handleChange(event: React.FormEvent) { props.onChange(event.currentTarget.value); } return (