degmods.com/src/layout/index.tsx
daniyal d3a93eab3e
All checks were successful
Release to Staging / build_and_release (push) Successful in 43s
chore: add social nav component in main layout
2024-09-16 12:36:35 +05:00

16 lines
284 B
TypeScript

import { Outlet } from 'react-router-dom'
import { Footer } from './footer'
import { Header } from './header'
import { SocialNav } from './socialNav'
export const Layout = () => {
return (
<>
<Header />
<Outlet />
<Footer />
<SocialNav />
</>
)
}