2023-09-20 00:02:26 -04:00
|
|
|
import React from 'react';
|
|
|
|
import { Outlet } from 'react-router-dom';
|
|
|
|
|
2023-09-21 16:40:08 -04:00
|
|
|
import AppBody from 'components/AppBody';
|
|
|
|
|
|
|
|
import '../experimental/AppOverrides.scss';
|
2023-09-20 00:02:26 -04:00
|
|
|
|
|
|
|
const AppLayout = () => {
|
|
|
|
return (
|
2023-09-21 16:40:08 -04:00
|
|
|
<AppBody>
|
|
|
|
<Outlet />
|
|
|
|
</AppBody>
|
2023-09-20 00:02:26 -04:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default AppLayout;
|