Initial commit
Load this up somewhere where I can setup CI/CD
This commit is contained in:
11
src/app/(authenticated)/layout.tsx
Normal file
11
src/app/(authenticated)/layout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { ReactNode } from 'react';
|
||||
|
||||
import { SupplyChainProvider } from '../lib/context/SupplyChain/SupplyChainProvider';
|
||||
|
||||
export default function Layout({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<SupplyChainProvider>
|
||||
{children}
|
||||
</SupplyChainProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user