import React from 'react'; import { useTheme, Typography, TypographyProps } from '@material-ui/core'; export interface ISubmitErrorProps extends TypographyProps {} export default function SubmitError(props: ISubmitErrorProps) { const theme = useTheme(); return ( ); }