Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1863 Rev 1901
Línea 14... Línea 14...
14
import SkillsCard from '@app/components/profile/skills/SkillsCard'
14
import SkillsCard from '@app/components/profile/skills/SkillsCard'
15
import HobbiesCard from '@app/components/profile/hobbies/HobbiesCard'
15
import HobbiesCard from '@app/components/profile/hobbies/HobbiesCard'
Línea 16... Línea 16...
16
 
16
 
Línea 17... Línea 17...
17
import '../../styles/profile/profile.scss'
17
import '../../styles/profile/profile.scss'
18
 
18
 
19
const View = () => {
19
const ProfileEditLayout = () => {
Línea 20... Línea 20...
20
  const { uuid } = useParams()
20
  const { uuid } = useParams()
21
  const { data: profile } = useFetch(`/profile/my-profiles/edit/${uuid}`)
21
  const { data: profile } = useFetch(`/profile/my-profiles/edit/${uuid}`)
Línea 86... Línea 86...
86
      </Grid>
86
      </Grid>
87
    </Container>
87
    </Container>
88
  )
88
  )
89
}
89
}
Línea 90... Línea 90...
90
 
90