blob: 245cdbba866d194a16157b91312749fdde32e5df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import React from 'react'
import styles from './CardAgreement.module.css'
import SubmitButton from '../SubmitButton/SubmitButton'
import { Typography } from '@mui/material'
const CardAgreement = ({ title, image }) => {
return (
<>
<div className={styles.card}>
<img className={styles.card__image} src={image} alt="" />
<Typography>
I hereby confirm the identity and address of ___________ as being true, correct and accurate.
</Typography>
</div>
<SubmitButton />
</>
)
}
export default CardAgreement
|