aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/ui-react/src/NotFound.js
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/ui-react/src/NotFound.js')
-rw-r--r--runtime/ui-react/src/NotFound.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/ui-react/src/NotFound.js b/runtime/ui-react/src/NotFound.js
index d4b53fd71..fb6d10a8b 100644
--- a/runtime/ui-react/src/NotFound.js
+++ b/runtime/ui-react/src/NotFound.js
@@ -24,13 +24,13 @@ import React from 'react'
export default class NotFound extends React.Component {
- render () {
- return (
+ render() {
+ return (
<div id='main'>
- <div class="divRow"><b>Page Not Found!</b></div>
- <div class="divRow">Please cick <a href="/">here</a> to go back to the main page.</div>
+ <div class="divRow"><b>Page Not Found!</b></div>
+ <div class="divRow">Please cick <a href="/">here</a> to go back to the main page.</div>
</div>
- );
- }
+ );
+ }
}