summaryrefslogtreecommitdiff
path: root/web-ui/app/js/account_recovery/page.js
diff options
context:
space:
mode:
authorTayane Fernandes <tayane.rmf@gmail.com>2017-02-07 14:19:13 -0200
committerTayane Fernandes <tayane.rmf@gmail.com>2017-02-07 14:19:13 -0200
commit9cfc90ca67f5f46882ed21b460a01b6d50ffa79c (patch)
tree6c56b9aadcbb3806a7fb0484dd31cd5c10cbd06f /web-ui/app/js/account_recovery/page.js
parent3cd797a6da2f14d191006e5e110faf1f51ac3599 (diff)
[#922] Add i18n translations for react
with @anikarni
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)