16 lines
274 B
TypeScript
16 lines
274 B
TypeScript
import { Outlet } from 'react-router-dom';
|
|
import { Footer } from './Footer';
|
|
import { Header } from './Header';
|
|
|
|
export function Layout() {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<main className="lg:px-6">
|
|
<Outlet />
|
|
</main>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|