blob: a9037043678600ddc9dc34b471f44624c2e47944 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import React from 'react'
import { Link } from 'react-router-dom'
import Card from '../../../components/Card/Card'
import Header from '../../../components/Header/Header'
import SubmitButton from '../../../components/SubmitButton/SubmitButton'
import styles from './UpdateSelect.module.css'
const UpdateSelect = () => {
return (
<>
<Header subheading="Mera Aadhaar Meri Pehchan" />
<div className={styles.card__container}>
<Link to="/update/demographic">
<Card
title="Demographic"
image={`${process.env.PUBLIC_URL}/assets/images/enrollment.svg`}
/>
</Link>
<Link to="/update/biometric">
<Card
title="Biometric"
image={`${process.env.PUBLIC_URL}/assets/images/update.svg`}
/>
</Link>
<Link to="/update/agreement">
<SubmitButton />
</Link>
</div>
</>
)
}
export default UpdateSelect
|