amenpunk 3 år sedan
förälder
incheckning
c452b3155c
2 ändrade filer med 8 tillägg och 7 borttagningar
  1. 1 2
      src/Pages/Configuracion.jsx
  2. 7 5
      src/Pages/Home.jsx

+ 1 - 2
src/Pages/Configuracion.jsx

@@ -1,6 +1,5 @@
 import React from 'react'
-import ProfilePicture from '../Images/man.png';
-import { Row, Col, Button } from 'react-bootstrap'
+import { Row, Col } from 'react-bootstrap'
 import { useSelector } from 'react-redux'
 
 export function Configuracion() {

+ 7 - 5
src/Pages/Home.jsx

@@ -1,7 +1,7 @@
 import React from 'react'
 import { Col, Row } from 'react-bootstrap'
 import { PersonOutline, VerifiedUser, ListAlt } from '@mui/icons-material/'
-import Actividades from '../Components/Home/Actividades'
+// import Actividades from '../Components/Home/Actividades'
 import Candidatos from '../Components/Home/Candidatos'
 import { Card } from '../Components/Card';
 import { useSelector } from 'react-redux';
@@ -47,14 +47,16 @@ export function Home() {
           </div>
           <div className="historial_candidatos">
             <Row>
-              <Col md="8">
+              <Col md="12">
                 <Candidatos 
                   passwords={data?.data || []}
                 />
               </Col>
-              <Col md="4">
-                <Actividades />
-              </Col>
+              {/*
+                <Col md="4">
+                  <Actividades />
+                </Col>
+*/}
             </Row>
           </div>
         </div>