File size: 514 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
// @flow
// This component is shown as a full replacement for the entire app in production whenever an error happens that would otherwise crash the app
import React from 'react';
import ViewError from '../viewError';
const BlueScreen = () => {
return (
<ViewError
heading={'Something went wrong'}
subheading={
'Sorry about the technical issues. Brian and Max have been notified of the problem and should resolve it soon.'
}
refresh
/>
);
};
export default BlueScreen;
|