Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3201 | | Comparar con el anterior | Ultima modificación | Ver Log |

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