Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3201 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3201 Rev 3719
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react';
2
import { Outlet } from 'react-router-dom'
2
import { Outlet } from 'react-router-dom';
3
import { CssBaseline } from '@mui/material'
3
import { CssBaseline } from '@mui/material';
4
 
4
 
5
import Footer from '@components/footer/Footer'
5
import Footer from '@components/footer/Footer';
6
 
6
 
7
import NotificationAlert from '@components/UI/notification/NotificationAlert'
7
import NotificationAlert from '@components/UI/notification/NotificationAlert';
-
 
8
import ShareModal from '@components/modals/ShareModal';
-
 
9
import ReportModal from '@components/modals/ReportModal';
8
 
10
 
9
export default function RootLayout() {
11
export default function RootLayout() {
10
  return (
12
  return (
11
    <>
13
    <>
12
      <CssBaseline />
14
      <CssBaseline />
13
      <Outlet />
15
      <Outlet />
14
      <NotificationAlert />
16
      <NotificationAlert />
-
 
17
      <ShareModal />
-
 
18
      <ReportModal />
-
 
19
 
15
      <Footer />
20
      <Footer />
16
    </>
21
    </>
17
  )
22
  );
18
}
23
}