blob: 9ac568abe98007e9869fc02bfba843c88663b00b (
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
|
import React from 'react'
import Header from '../../../components/Header/Header'
import CardScanner from '../../../components/Card/CardScanner'
import styles from './FinalSlip.module.css'
import { Grid, Typography } from '@mui/material'
const FinalSlip = () => {
return (
<>
<Header subheading="Enrollment" />
<div className={styles.card__container}>
<CardScanner
image={`${process.env.PUBLIC_URL}/assets/images/slip.svg`}
/>
</div>
<div>
<Grid container justifyContent="center">
<Typography align="center" fontWeight={'Bold'}>
Thank you for your time.<br />
Please collect your slip before leaving
</Typography>
</Grid>
</div>
</>
)
}
export default FinalSlip
|