summaryrefslogtreecommitdiffstats
path: root/frontend/components/Page.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-02-13 13:19:23 -0500
committerWes Bos <wesbos@gmail.com>2018-02-13 13:19:23 -0500
commitfa3ec3299b3fa33e5a699683beb96cfa4e6dd51d (patch)
tree601b4ff9650cd17a6d4181fc5982b401411d2a6a /frontend/components/Page.js
parente0d0baa75ec0bf617f91b6cd779305d4009cae12 (diff)
getting there
Diffstat (limited to 'frontend/components/Page.js')
-rw-r--r--frontend/components/Page.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/components/Page.js b/frontend/components/Page.js
index 291bdcd..93cd7c9 100644
--- a/frontend/components/Page.js
+++ b/frontend/components/Page.js
@@ -16,7 +16,7 @@ class ErrorBoundary extends Component {
}
render() {
if (this.state.error) {
- return <p>Shit! AN error!</p>;
+ return <p>Shit! AN error! {this.state.error.message}</p>;
}
return this.props.children;
}