Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2468 Rev 2469
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 8... Línea 8...
8
export default ({ image, fullName, country, visits, connections, description }) => {
8
const Notifications = ({ image, fullName, country, visits, connections, description }) => {
Línea 9... Línea 9...
9
 
9
 
10
  const [notifications, setNotifications] = useState([]);
10
  const [notifications, setNotifications] = useState([]);
Línea 80... Línea 80...
80
        </div>
80
        </div>
81
      </div>
81
      </div>
82
    </section >
82
    </section >
83
  )
83
  )
84
}
84
}
-
 
85
export default Notifications
85
86