You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
529 B
20 lines
529 B
6 years ago
|
import React from 'react';
|
||
|
import ErrorBoundaryError from 'Components/Error/ErrorBoundaryError';
|
||
|
import PageContentBodyConnector from './PageContentBodyConnector';
|
||
|
import styles from './PageContentError.css';
|
||
|
|
||
|
function PageContentError(props) {
|
||
|
return (
|
||
|
<div className={styles.content}>
|
||
|
<PageContentBodyConnector>
|
||
|
<ErrorBoundaryError
|
||
|
{...props}
|
||
|
message='There was an error loading this page'
|
||
|
/>
|
||
|
</PageContentBodyConnector>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default PageContentError;
|