Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3488 Rev 3505
Línea 4... Línea 4...
4
import { useFetch } from '@shared/hooks';
4
import { useFetch } from '@shared/hooks';
Línea 5... Línea 5...
5
 
5
 
6
import { Grid, PageHeader, Spinner } from '@shared/components';
6
import { Grid, PageHeader, Spinner } from '@shared/components';
Línea 7... Línea 7...
7
import { TopicCard } from '@microlearning/components';
7
import { TopicCard } from '@microlearning/components';
8
 
8
 
Línea 9... Línea 9...
9
const TopicsPage = () => {
9
export function TopicsPage() {
Línea 10... Línea 10...
10
  const { data: topics, loading } = useFetch('/microlearning/topics');
10
  const { data: topics, loading } = useFetch('/microlearning/topics');
Línea 24... Línea 24...
24
          </Link>
24
          </Link>
25
        )}
25
        )}
26
      />
26
      />
27
    </>
27
    </>
28
  );
28
  );
29
};
29
}
30
 
-
 
31
export default TopicsPage;
-