Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2780 Rev 2805
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import { NavLink as Link, useLocation } from 'react-router-dom'
2
import { NavLink as Link, useLocation } from 'react-router-dom'
3
import { Typography, Container, styled, Breadcrumbs } from '@mui/material'
3
import { Typography, styled, Breadcrumbs } from '@mui/material'
Línea 4... Línea 4...
4
 
4
 
Línea 5... Línea 5...
5
import { useFetch } from '@hooks'
5
import { useFetch } from '@hooks'
Línea 18... Línea 18...
18
  }
18
  }
19
`
19
`
Línea 20... Línea 20...
20
 
20
 
21
const PoliciesLayout = ({ children, title }) => {
21
const PoliciesLayout = ({ children, title }) => {
22
  return (
22
  return (
23
    <Container className={styles.policies__page}>
23
    <>
24
      <PoliciesNavigation />
-
 
25
 
24
      <PoliciesNavigation />
26
      <Typography variant='h1'>{title}</Typography>
25
      <Typography variant='h1'>{title}</Typography>
27
      {children}
26
      <div className={styles.policies__page}>{children}</div>
28
    </Container>
27
    </>
29
  )
28
  )
Línea 30... Línea 29...
30
}
29
}
31
 
30