diff options
Diffstat (limited to 'www/app/components/error_panel.js')
-rw-r--r-- | www/app/components/error_panel.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/www/app/components/error_panel.js b/www/app/components/error_panel.js deleted file mode 100644 index fc88d459..00000000 --- a/www/app/components/error_panel.js +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import Center from './center' -import Area from './area' - -export default class ErrorPanel extends React.Component { - - constructor(props) { - super(props) - } - - render () { - return ( - <Center width="400"> - <Area> - <h1>Error</h1> - {this.props.error} - </Area> - </Center> - ) - } -} |