Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
514 Bytes
// @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;