import React from 'react' import { useTranslation } from 'react-i18next' import styled from 'styled-components' /** * StyledError styled component used to provide styles for error container. * * @type {styled component} */ const StyledError = (styled as any).div` display: flex; flex: 1; flex-direction: column; justify-content: center; align-items: center; height: 100vh; width: 100vw; color: var(--red); svg { margin-bottom: 20px; } ` /** * Error component used to error message. * * @type {component class} */ export const Error = (props: any) => { const { t } = useTranslation() // rendering error message const theme = context // TODO: this global context variable is from mocha... this seems incorrect return ( {t('editor:lbl-return')} {props.message} ) } export default Error