Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7239 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7239 Rev 7240
Línea 15... Línea 15...
15
  const [userInfo, setuserInfo] = useState({})
15
  const [userInfo, setuserInfo] = useState({})
16
  const [notifications, setNotifications] = useState([])
16
  const [notifications, setNotifications] = useState([])
17
  const [confirmModalShow, setConfirmModalShow] = useState(false)
17
  const [confirmModalShow, setConfirmModalShow] = useState(false)
18
  const dispatch = useDispatch()
18
  const dispatch = useDispatch()
Línea 19... Línea 19...
19
 
19
 
20
  const { image, full_name, country, visits, connections, description } =
20
  const { image, fullName, country, visits, connections, description } =
Línea 21... Línea 21...
21
    userInfo
21
    userInfo
22
 
22
 
23
  const getNotifications = async () => {
23
  const getNotifications = async () => {
Línea 135... Línea 135...
135
      <Container as="main">
135
      <Container as="main">
136
        <Row>
136
        <Row>
137
          <Col as="aside" md="4" className="d-none d-md-flex">
137
          <Col as="aside" md="4" className="d-none d-md-flex">
138
            <ProfileInfo
138
            <ProfileInfo
139
              image={image}
139
              image={image}
140
              fullName={full_name}
140
              fullName={fullName}
141
              description={description}
141
              description={description}
142
              visits={visits}
142
              visits={visits}
143
              country={country}
143
              country={country}
144
              connections={connections}
144
              connections={connections}
145
            />
145
            />