Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 6025 Rev 6026
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 CompanySizes from '../components/company-sizes/CompanySizes'
3
import CoverSection from '../components/CoverSection/CoverSection'
4
import CoverSection from '../components/CoverSection/CoverSection'
4
import Industry from '../components/industry/Industry'
5
import Industry from '../components/industry/Industry'
5
import Location from '../components/Locations/Location'
6
import Location from '../components/Locations/Location'
6
import Overview from '../components/Overview/Overview'
7
import Overview from '../components/Overview/Overview'
7
import ProfileInfo from '../components/ProfileInfo/ProfileInfo'
8
import ProfileInfo from '../components/ProfileInfo/ProfileInfo'
Línea 25... Línea 26...
25
    followers,
26
    followers,
26
    image,
27
    image,
27
    companyName,
28
    companyName,
28
    overview,
29
    overview,
29
    locations,
30
    locations,
30
    industry
31
    industry,
-
 
32
    companySize
31
  } = urlVars
33
  } = urlVars
Línea 32... Línea 34...
32
 
34
 
33
 
35
 
Línea 78... Línea 80...
78
            />
80
            />
79
            <Industry
81
            <Industry
80
              industry={industry}
82
              industry={industry}
81
              industryAddUrl={routeIndustry}
83
              industryAddUrl={routeIndustry}
82
            />
84
            />
-
 
85
            <CompanySizes
-
 
86
              companySize={companySize}
-
 
87
              companySizeAddUrl={routeCompanySize}
-
 
88
            />
83
          </div>
89
          </div>
84
        </div>
90
        </div>
85
      </div>
91
      </div>
86
    </>
92
    </>
87
  )
93
  )