diff options
author | rohan09-raj <[email protected]> | 2022-08-16 12:15:55 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-08-16 12:15:55 +0530 |
commit | 1c9a3d21cc3479d299181d98fb895614e0aaf649 (patch) | |
tree | d871c9821cab708ed7f12169db6d59a8128c76ce /client/src/pages/Update/UpdateSelect/UpdateSelect.jsx | |
parent | 5be7add30a629474c9269355b875ab310a82ba4c (diff) |
random bullshit
Diffstat (limited to 'client/src/pages/Update/UpdateSelect/UpdateSelect.jsx')
-rw-r--r-- | client/src/pages/Update/UpdateSelect/UpdateSelect.jsx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx b/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx index a903704..e57587a 100644 --- a/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx +++ b/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx @@ -1,3 +1,4 @@ +import { t } from 'i18next' import React from 'react' import { Link } from 'react-router-dom' @@ -9,22 +10,22 @@ import styles from './UpdateSelect.module.css' const UpdateSelect = () => { return ( <> - <Header subheading="Mera Aadhaar Meri Pehchan" /> + <Header subheading={t('MERA_AADHAAR_MERI_PEHCHAN')} /> <div className={styles.card__container}> - <Link to="/update/demographic"> + <Link to="/update/demographic"> <Card - title="Demographic" + title={t('DEMOGRAPHIC')} image={`${process.env.PUBLIC_URL}/assets/images/enrollment.svg`} /> - </Link> + </Link> <Link to="/update/biometric"> <Card - title="Biometric" + title={t('BIOMETRIC')} image={`${process.env.PUBLIC_URL}/assets/images/update.svg`} /> </Link> <Link to="/update/agreement"> - <SubmitButton /> + <SubmitButton /> </Link> </div> </> |