import React, { useState } from 'react' import { Col, Row } from 'react-bootstrap' import { PersonOutline, VerifiedUser, ListAlt } from '@mui/icons-material/' // import Actividades from '../Components/Home/Actividades' import Candidatos from '../Components/Home/Candidatos' import { Card } from '../Components/Card'; import { useSelector } from 'react-redux'; import { Service } from '../Utils/HTTP.js' import { useQuery } from 'react-query'; import { ModalEdit } from '../Components/Password/Operation'; export function Home() { const auth = useSelector((state) => state.token) const [password,setPasword]= useState(null) const [visible,setVisible]= useState(false) const hideModal = () => setVisible(false) const getAllPwd = async () => { let rest = new Service('/contrasenia/getallbyidUsr'); return await rest.getQuery(auth.token) } const { data } = useQuery('homepwd', getAllPwd); return (
{/* */}
{ password ? : null }
) }