import { Box } from '@material-ui/core'; import React from 'react'; export interface Props { readonly children: any; } const ErrorMessage = ({ children, ...props }: Props) => ( {children} ); export default ErrorMessage;