import React from 'react' import { StyleDiv } from './styled' type FormErrorDialogProps = { message?: string; } const FormErrorDialog = (props: FormErrorDialogProps) => { return props.message ? {props.message} : null; } export default FormErrorDialog;