init
This commit is contained in:
11
worklenz-frontend/src/layouts/AuthenticatedLayout.tsx
Normal file
11
worklenz-frontend/src/layouts/AuthenticatedLayout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
import { Outlet } from 'react-router-dom';
|
||||
import { SocketProvider } from '@/socket/socketContext';
|
||||
|
||||
export const AuthenticatedLayout = () => {
|
||||
return (
|
||||
<SocketProvider>
|
||||
<Outlet />
|
||||
</SocketProvider>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user