import * as React from 'react'; import { ErrorDivider, ErrorSideCode, ErrorText, ErrorTextLower, ErrorWrapper, } from './ErrorBanner.styled'; export type ErrorMessage = { english: string; japanese?: string; friendlyCode?: string; }; type ErrorBannerProps = { message: Required; }; export const ErrorBanner = (props: ErrorBannerProps) => ( {props.message.friendlyCode}
{props.message.english} {props.message.japanese}
);