Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / components / containers / error / NotFoundError.tsx
blob3c9da291d1f23a38f88c2f46c88a00f0ab96e9df
1 import { c } from 'ttag';
3 import notFoundErrorSvg from '@proton/styles/assets/img/errors/error-404.svg';
5 import IllustrationPlaceholder from '../illustration/IllustrationPlaceholder';
7 const NotFoundError = () => {
8     return <IllustrationPlaceholder title={c('Error message').t`Not found`} url={notFoundErrorSvg} />;
9 };
11 export default NotFoundError;