Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5288 Rev 5399
Línea 1... Línea 1...
1
/* eslint-disable react/prop-types */
1
/* eslint-disable react/prop-types */
2
import React, { useState } from 'react'
2
import React, { useState } from 'react'
3
import { addNotification } from '../../../redux/notification/notification.actions'
3
import { addNotification } from '../../../redux/notification/notification.actions'
4
import Spinner from '../../../shared/loading-spinner/Spinner'
4
import Spinner from '../../../shared/loading-spinner/Spinner'
5
import { axios } from '../../../utils'
5
import { axios } from '../../../utils'
-
 
6
import { useSelector } from 'react-redux'
Línea 6... Línea 7...
6
 
7
 
7
const SocialNetworks = ({
8
const SocialNetworks = ({
8
  className = 'peopleYouMayKnow',
-
 
9
  LABELS = {}
9
  className = 'peopleYouMayKnow'
10
}) => {
10
}) => {
-
 
11
  const [loading, setLoading] = useState(false)
Línea 11... Línea 12...
11
  const [loading, setLoading] = useState(false)
12
  const labels = useSelector(state => state.labels)
12
 
13
 
13
  const handleOnRoom = async () => {
14
  const handleOnRoom = async () => {
14
    try {
15
    try {
Línea 67... Línea 68...
67
          <img src="/images/logo-2getskillsa-apple.jpeg" alt="" />
68
          <img src="/images/logo-2getskillsa-apple.jpeg" alt="" />
68
        </a>
69
        </a>
69
      </div>
70
      </div>
Línea 70... Línea 71...
70
 
71
 
71
      <a href="#">
72
      <a href="#">
72
        {LABELS.MICRO_LEARNING}
73
        {labels.MICRO_LEARNING}
73
      </a>
74
      </a>
74
    </div>
75
    </div>
75
  )
76
  )