Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3481 Rev 3505
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react';
2
import { Typography } from '@mui/material'
2
import { Typography } from '@mui/material';
-
 
3
import Companies from '@microlearning/components/Companies';
Línea 3... Línea -...
3
 
-
 
4
import Companies from 'components/micro-learning/Companies'
-
 
5
 
4
 
6
const CompaniesPage = () => {
5
export function CompaniesPage() {
7
  return (
6
  return (
8
    <>
7
    <>
9
      <Typography variant='h1'>Compañias</Typography>
8
      <Typography variant='h1'>Compañias</Typography>
10
      <Companies />
9
      <Companies />
11
    </>
10
    </>
12
  )
11
  );
13
}
-
 
14
 
-