summaryrefslogtreecommitdiff
path: root/web-ui/app/js/account_recovery/page.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/account_recovery/page.js')
-rw-r--r--web-ui/app/js/account_recovery/page.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/web-ui/app/js/account_recovery/page.js b/web-ui/app/js/account_recovery/page.js
index 5d4f2c36..90cdb54f 100644
--- a/web-ui/app/js/account_recovery/page.js
+++ b/web-ui/app/js/account_recovery/page.js
@@ -1,8 +1,9 @@
import React from 'react'
+import { translate } from 'react-i18next'
import 'scss/account_recovery/page.scss'
-const Page = () => (
+const Page = (props) => (
<div className='container'>
<img src='assets/images/forgot-my-password.svg' alt="Esqueci minha senha!"/>
<form>
@@ -22,6 +23,6 @@ const Page = () => (
</div>
</form>
</div>
-);
+)
-export default Page
+export default translate('', { wait: true })(Page)