2024-04-01 21:34:52 +03:00
|
|
|
import { Outlet } from "react-router-dom";
|
|
|
|
|
|
|
|
|
|
function TasksPageLayout() {
|
|
|
|
|
return (
|
2024-05-29 09:34:58 -07:00
|
|
|
<div className="max-w-6xl mx-auto px-8">
|
2024-04-01 21:34:52 +03:00
|
|
|
<main>
|
|
|
|
|
<Outlet />
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export { TasksPageLayout };
|