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.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/web-ui/app/js/account_recovery.js b/web-ui/app/js/account_recovery.js
deleted file mode 100644
index cd01378d..00000000
--- a/web-ui/app/js/account_recovery.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from 'react'
-import { render } from 'react-dom'
-import a11y from 'react-a11y'
-import { I18nextProvider } from 'react-i18next'
-
-import Page from 'js/account_recovery/page'
-import i18n from 'js/account_recovery/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')
-);