Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / components / containers / error / InternalServerError.tsx
blob7ed55c5032e4e36abb8fc01bb8ab90720a7c7400
1 import { c } from 'ttag';
3 import internalServerErrorSvg from '@proton/styles/assets/img/errors/error-500.svg';
5 import IllustrationPlaceholder from '../illustration/IllustrationPlaceholder';
7 const InternalServerError = () => {
8     return (
9         <IllustrationPlaceholder title={c('Error message').t`Internal server error`} url={internalServerErrorSvg}>
10             <>
11                 <span>{c('Error message').t`Brace yourself till we get the error fixed.`}</span>
12                 <span>{c('Error message').t`You may also refresh the page or try again later.`}</span>
13             </>
14         </IllustrationPlaceholder>
15     );
18 export default InternalServerError;