Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3481 Rev 3505
Línea 4... Línea 4...
4
import { useMicroLearning, useFetch } from '@hooks';
4
import { useMicroLearning, useFetch } from '@hooks';
Línea 5... Línea 5...
5
 
5
 
6
import Spinner from '@components/UI/Spinner';
6
import Spinner from '@components/UI/Spinner';
Línea 7... Línea 7...
7
import DetailTag from '@microlearning/components/DetailTag';
7
import DetailTag from '@microlearning/components/DetailTag';
8
 
8
 
9
const ProfilePage = () => {
9
export function ProfilePage() {
Línea 10... Línea 10...
10
  const { link_profile: linkProfile } = useMicroLearning();
10
  const { link_profile: linkProfile } = useMicroLearning();
Línea 28... Línea 28...
28
          <DetailTag key={uuid} title={label} label={value} />
28
          <DetailTag key={uuid} title={label} label={value} />
29
        ))}
29
        ))}
30
      </Box>
30
      </Box>
31
    </>
31
    </>
32
  );
32
  );
33
};
33
}
34
 
-
 
35
export default ProfilePage;
-