Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 6026 Rev 6050
Línea 4... Línea 4...
4
import CoverSection from '../components/CoverSection/CoverSection'
4
import CoverSection from '../components/CoverSection/CoverSection'
5
import Industry from '../components/industry/Industry'
5
import Industry from '../components/industry/Industry'
6
import Location from '../components/Locations/Location'
6
import Location from '../components/Locations/Location'
7
import Overview from '../components/Overview/Overview'
7
import Overview from '../components/Overview/Overview'
8
import ProfileInfo from '../components/ProfileInfo/ProfileInfo'
8
import ProfileInfo from '../components/ProfileInfo/ProfileInfo'
-
 
9
import WebPage from '../components/web-page/WebPage'
-
 
10
import YearOfFoundation from '../components/year-of-foundation/YearOfFoundation'
Línea 9... Línea 11...
9
 
11
 
Línea 10... Línea 12...
10
const ProfileView = ({ urlVars }) => {
12
const ProfileView = ({ urlVars }) => {
11
 
13
 
Línea 27... Línea 29...
27
    image,
29
    image,
28
    companyName,
30
    companyName,
29
    overview,
31
    overview,
30
    locations,
32
    locations,
31
    industry,
33
    industry,
32
    companySize
34
    companySize,
-
 
35
    foundationYear,
-
 
36
    website
33
  } = urlVars
37
  } = urlVars
Línea 34... Línea 38...
34
 
38
 
35
 
39
 
36
  useEffect(() => {
40
  useEffect(() => {
37
    getData(routeCoverUpload)
41
    getData(routeExtended)
Línea 38... Línea 42...
38
      .then(resp => console.log(resp))
42
      .then(resp => console.log(resp))
Línea 84... Línea 88...
84
            />
88
            />
85
            <CompanySizes
89
            <CompanySizes
86
              companySize={companySize}
90
              companySize={companySize}
87
              companySizeAddUrl={routeCompanySize}
91
              companySizeAddUrl={routeCompanySize}
88
            />
92
            />
-
 
93
            <YearOfFoundation
-
 
94
              companySize={foundationYear}
-
 
95
              companySizeAddUrl={routeFoundationYear}
-
 
96
            />
-
 
97
            <WebPage
-
 
98
              companySize={website}
-
 
99
              companySizeAddUrl={routeWebsite}
-
 
100
            />
89
          </div>
101
          </div>
90
        </div>
102
        </div>
91
      </div>
103
      </div>
92
    </>
104
    </>
93
  )
105
  )