import React from 'react'; interface Props { children: React.ReactChild; } const InputError = ({ children }: Props) => {children}; export default InputError;