|
@@ -1,7 +1,7 @@
|
1
|
1
|
import React from 'react'
|
2
|
2
|
import { Col, Row } from 'react-bootstrap'
|
3
|
3
|
import { PersonOutline, VerifiedUser, ListAlt } from '@mui/icons-material/'
|
4
|
|
-import Actividades from '../Components/Home/Actividades'
|
|
4
|
+// import Actividades from '../Components/Home/Actividades'
|
5
|
5
|
import Candidatos from '../Components/Home/Candidatos'
|
6
|
6
|
import { Card } from '../Components/Card';
|
7
|
7
|
import { useSelector } from 'react-redux';
|
|
@@ -47,14 +47,16 @@ export function Home() {
|
47
|
47
|
</div>
|
48
|
48
|
<div className="historial_candidatos">
|
49
|
49
|
<Row>
|
50
|
|
- <Col md="8">
|
|
50
|
+ <Col md="12">
|
51
|
51
|
<Candidatos
|
52
|
52
|
passwords={data?.data || []}
|
53
|
53
|
/>
|
54
|
54
|
</Col>
|
55
|
|
- <Col md="4">
|
56
|
|
- <Actividades />
|
57
|
|
- </Col>
|
|
55
|
+ {/*
|
|
56
|
+ <Col md="4">
|
|
57
|
+ <Actividades />
|
|
58
|
+ </Col>
|
|
59
|
+*/}
|
58
|
60
|
</Row>
|
59
|
61
|
</div>
|
60
|
62
|
</div>
|