Rev 3683 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react';
import { Outlet } from 'react-router-dom';
import { PageLayout } from '@shared/layouts';
import { ProvidersWrapper } from '@shared/providers';
export const GroupsLayout = () => {
return (
<ProvidersWrapper>
<PageLayout>
<Outlet />
</PageLayout>
</ProvidersWrapper>
);
};