summaryrefslogtreecommitdiff
path: root/web-ui/app/js/account_recovery.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/account_recovery.js')
-rw-r--r--web-ui/app/js/account_recovery.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/web-ui/app/js/account_recovery.js b/web-ui/app/js/account_recovery.js
new file mode 100644
index 00000000..02183574
--- /dev/null
+++ b/web-ui/app/js/account_recovery.js
@@ -0,0 +1,8 @@
+import React from 'react'
+import { render } from 'react-dom'
+import Page from 'js/account_recovery/page'
+
+render(
+ <Page/>,
+ document.getElementById('root')
+);