Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 6016 Rev 6025
Línea 1... Línea 1...
1
import React, { useEffect } from 'react'
1
import React, { useEffect } from 'react'
2
import { getData } from '../../helpers/fetchHelpers'
2
import { getData } from '../../helpers/fetchHelpers'
3
import CoverSection from '../components/CoverSection/CoverSection'
3
import CoverSection from '../components/CoverSection/CoverSection'
-
 
4
import Industry from '../components/industry/Industry'
4
import Location from '../components/Locations/Location'
5
import Location from '../components/Locations/Location'
5
import Overview from '../components/Overview/Overview'
6
import Overview from '../components/Overview/Overview'
6
import ProfileInfo from '../components/ProfileInfo/ProfileInfo'
7
import ProfileInfo from '../components/ProfileInfo/ProfileInfo'
Línea 7... Línea 8...
7
 
8
 
Línea 23... Línea 24...
23
    cover,
24
    cover,
24
    followers,
25
    followers,
25
    image,
26
    image,
26
    companyName,
27
    companyName,
27
    overview,
28
    overview,
28
    locations
29
    locations,
-
 
30
    industry
29
  } = urlVars
31
  } = urlVars
Línea 30... Línea 32...
30
 
32
 
31
 
33
 
Línea 72... Línea 74...
72
            />
74
            />
73
            <Location
75
            <Location
74
              locations={locations}
76
              locations={locations}
75
              locationsAddUrl={routeLocationAdd}
77
              locationsAddUrl={routeLocationAdd}
76
            />
78
            />
-
 
79
            <Industry
-
 
80
              industry={industry}
-
 
81
              industryAddUrl={routeIndustry}
-
 
82
            />
77
          </div>
83
          </div>
78
        </div>
84
        </div>
79
      </div>
85
      </div>
80
    </>
86
    </>
81
  )
87
  )