Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2469 | Rev 2471 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2469 Rev 2470
Línea 3... Línea 3...
3
import { useLayoutEffect } from 'react';
3
import { useLayoutEffect } from 'react';
4
import ProfileInfo from '../dashboard/components/home-section/ProfileInfo';
4
import ProfileInfo from '../dashboard/components/home-section/ProfileInfo';
5
import SocialNetworks from '../dashboard/components/home-section/SocialNetworks';
5
import SocialNetworks from '../dashboard/components/home-section/SocialNetworks';
6
import { axios } from '../utils';
6
import { axios } from '../utils';
Línea 7... Línea 7...
7
 
7
 
Línea -... Línea 8...
-
 
8
const Notifications = ({ backendVars }) => {
8
const Notifications = ({ image, fullName, country, visits, connections, description }) => {
9
 
Línea 9... Línea 10...
9
 
10
  const { image, fullName, country, visits, connections, description } = backendVars
10
  const [notifications, setNotifications] = useState([]);
11
  const [notifications, setNotifications] = useState([]);
11
 
12