summaryrefslogtreecommitdiff
path: root/web-ui/app
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app')
-rw-r--r--web-ui/app/js/account_recovery.js3
-rw-r--r--web-ui/app/js/account_recovery/page.js5
2 files changed, 7 insertions, 1 deletions
diff --git a/web-ui/app/js/account_recovery.js b/web-ui/app/js/account_recovery.js
index a136b261..02183574 100644
--- a/web-ui/app/js/account_recovery.js
+++ b/web-ui/app/js/account_recovery.js
@@ -1,7 +1,8 @@
import React from 'react'
import { render } from 'react-dom'
+import Page from 'js/account_recovery/page'
render(
- <h1>Hello, world!</h1>,
+ <Page/>,
document.getElementById('root')
);
diff --git a/web-ui/app/js/account_recovery/page.js b/web-ui/app/js/account_recovery/page.js
new file mode 100644
index 00000000..e400dfae
--- /dev/null
+++ b/web-ui/app/js/account_recovery/page.js
@@ -0,0 +1,5 @@
+import React from 'react'
+
+const Page = () => <h1>Hello world</h1>;
+
+export default Page