d3a93eab3e
All checks were successful
Release to Staging / build_and_release (push) Successful in 43s
16 lines
284 B
TypeScript
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 />
|
|
</>
|
|
)
|
|
}
|