mocksaml/components/Layout.tsx

12 lines
205 B
TypeScript
Raw Normal View History

2022-02-17 06:05:50 +00:00
import Navbar from './NavBar'
import Header from './Header'
export default function Layout({ children }) {
return (
<>
<Navbar />
<main>{children}</main>
<Header />
</>
)
}