move to PageContentBody from PageContentBodyConnector

This commit is contained in:
Robin Dadswell
2021-01-03 22:49:24 +00:00
committed by nitsua
parent 40f156c16e
commit cfc52d12ea
34 changed files with 88 additions and 101 deletions

View File

@@ -1,17 +1,17 @@
import React from 'react';
import ErrorBoundaryError from 'Components/Error/ErrorBoundaryError';
import PageContentBodyConnector from './PageContentBodyConnector';
import PageContentBody from './PageContentBody';
import styles from './PageContentError.css';
function PageContentError(props) {
return (
<div className={styles.content}>
<PageContentBodyConnector>
<PageContentBody>
<ErrorBoundaryError
{...props}
message='There was an error loading this page'
/>
</PageContentBodyConnector>
</PageContentBody>
</div>
);
}