Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3469 Rev 3470
Línea 1... Línea 1...
1
import React from 'react';
1
import React from 'react';
2
import { Box } from '@mui/material';
2
import { Box } from '@mui/material';
-
 
3
import { Outlet } from 'react-router-dom';
Línea 3... Línea 4...
3
 
4
 
4
export function PageLayout({ children }) {
5
export function PageLayout({ children }) {
5
  return (
6
  return (
6
    <Box
7
    <Box
Línea 9... Línea 10...
9
        flexDirection: 'column',
10
        flexDirection: 'column',
10
        gap: 1,
11
        gap: 1,
11
        minHeight: '100dvh'
12
        minHeight: '100dvh'
12
      }}
13
      }}
13
    >
14
    >
-
 
15
      <Outlet />
14
      {children}
16
      {children}
15
    </Box>
17
    </Box>
16
  );
18
  );
17
}
19
}