laconic-deployer-frontend/apps/deploy-fe/src/app/(web3-authenticated)/layout.tsx

12 lines
209 B
TypeScript

import type React from 'react'
interface LayoutProps {
children: React.ReactNode
}
const Layout: React.FC<LayoutProps> = async ({ children }) => {
return <main>{children}</main>
}
export default Layout