diff --git a/lib/components/ErrorPage.js b/lib/components/ErrorPage.js index 7037427..dfdadf3 100644 --- a/lib/components/ErrorPage.js +++ b/lib/components/ErrorPage.js @@ -1,5 +1,7 @@ +import Centered from './Centered' import ErrorStore from '../stores/ErrorStore' import React from 'react' +import Spinner from './Spinner' export default class ErrorPage extends React.Component { @@ -20,15 +22,18 @@ export default class ErrorPage extends React.Component { } render() { - return
-

{this.state.status}

-

{this.state.message}

+ return + + + +

FilePizza - {this.state.status}

+

{this.state.message}

{this.state.stack ?
{this.state.stack}
: null} -
+ } }