Consolidate identical layout components (#2007)
This commit is contained in:
13
skyvern-frontend/src/components/PageLayout.tsx
Normal file
13
skyvern-frontend/src/components/PageLayout.tsx
Normal 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 };
|
||||
Reference in New Issue
Block a user