summaryrefslogtreecommitdiff
path: root/web-ui/src/account_recovery/account_recovery.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/src/account_recovery/account_recovery.js')
-rw-r--r--web-ui/src/account_recovery/account_recovery.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/web-ui/src/account_recovery/account_recovery.js b/web-ui/src/account_recovery/account_recovery.js
new file mode 100644
index 00000000..f2421bfc
--- /dev/null
+++ b/web-ui/src/account_recovery/account_recovery.js
@@ -0,0 +1,18 @@
+import React from 'react'
+import { render } from 'react-dom'
+import a11y from 'react-a11y'
+import { I18nextProvider } from 'react-i18next'
+
+import Page from './page'
+import i18n from '../i18n'
+
+import 'font-awesome/scss/font-awesome.scss'
+
+if(process.env.NODE_ENV === 'development') a11y(React);
+
+render(
+ <I18nextProvider i18n={ i18n }>
+ <Page/>
+ </I18nextProvider>,
+ document.getElementById('root')
+);