Tasks page implementation (#120)
This commit is contained in:
13
skyvern-frontend/src/routes/tasks/TasksPageLayout.tsx
Normal file
13
skyvern-frontend/src/routes/tasks/TasksPageLayout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Outlet } from "react-router-dom";
|
||||
|
||||
function TasksPageLayout() {
|
||||
return (
|
||||
<div className="px-6 flex grow flex-col gap-4">
|
||||
<main>
|
||||
<Outlet />
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export { TasksPageLayout };
|
||||
Reference in New Issue
Block a user