Files
walden-tech-screen/src/app/(authenticated)/layout.tsx
mifi 7119957c9e Initial commit
Load this up somewhere where I can setup CI/CD
2024-01-24 13:05:19 -05:00

12 lines
302 B
TypeScript

import { ReactNode } from 'react';
import { SupplyChainProvider } from '../lib/context/SupplyChain/SupplyChainProvider';
export default function Layout({ children }: { children: ReactNode }) {
return (
<SupplyChainProvider>
{children}
</SupplyChainProvider>
);
}