19 lines
351 B
TypeScript
19 lines
351 B
TypeScript
import React from "react"
|
|
|
|
import Footer from "@modules/layout/templates/footer"
|
|
import Nav from "@modules/layout/templates/nav"
|
|
|
|
const Layout: React.FC<{
|
|
children: React.ReactNode
|
|
}> = ({ children }) => {
|
|
return (
|
|
<div>
|
|
<Nav />
|
|
<main className="relative">{children}</main>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Layout
|