blob: b8d556e159d46a506078d35d28a49b01d6bdfccb (
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
|
import React from 'react';
import {Link} from 'react-router-dom';
import Card from '../../components/Card/Card';
import Header from '../../components/Header/Header';
import styles from './Home.module.css';
const Home = ({page, setPage}) => {
return (
<>
<Header subheading='Admin' />
<div className={styles.card__container}>
<Link to='/verified'>
<Card
title='Verified'
image={`${process.env.PUBLIC_URL}/assets/images/verified.svg`}
/>
</Link>
<Link to='/unverified'>
<Card
title='Unverified'
image={`${process.env.PUBLIC_URL}/assets/images/unverified.svg`}
/>
</Link>
</div>
</>
);
};
export default Home;
|