import './input-wrapper.css'; type Props = { children: React.ReactNode; }; export default function InputWrapper(props: Props) { return (
{props.children}
); }