* replace next with vite * disable strictmode (it interferes with collaboration in dev mode)
15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
import { UserProvider } from '@/features/user/user-provider';
|
|
import Shell from './shell';
|
|
import { Outlet } from 'react-router-dom';
|
|
|
|
export default function DashboardLayout() {
|
|
|
|
return (
|
|
<UserProvider>
|
|
<Shell>
|
|
<Outlet />
|
|
</Shell>
|
|
</UserProvider>
|
|
);
|
|
}
|