Consolidate identical layout components (#2007)

This commit is contained in:
Shuchang Zheng
2025-03-24 07:51:53 -07:00
committed by GitHub
parent 008cc26a15
commit b1e6c7daf7
6 changed files with 11 additions and 66 deletions

View File

@@ -0,0 +1,13 @@
import { Outlet } from "react-router-dom";
function PageLayout() {
return (
<div className="container mx-auto">
<main>
<Outlet />
</main>
</div>
);
}
export { PageLayout };