Daniel Ternyak ae708e70a1
Error Screen on Exception (#539)
* Create ErrorScreen component to show Errors when a component catches.

* Show ErrorScreen component when Root component's componentDidCatch lifecycle method is called.

This should catch all of the applications errors, as Root is at the top of the tree.

* Convert ErrorScreen Component to SFC

* Address PR comments
2017-12-07 22:16:27 -08:00

9 lines
137 B
SCSS

@import 'common/sass/variables';
@import 'common/sass/mixins';
.ErrorScreen {
@include cover-message;
background: $brand-danger;
}