import React, { PropsWithChildren } from 'react'; export interface IInputWrapper { title: string; className?: string; } export default function InputWrapper(props: PropsWithChildren) { const { children, title, className } = props; return (
{children}
); }