14 lines
222 B
TypeScript
14 lines
222 B
TypeScript
import { Outlet } from "react-router-dom";
|
|
|
|
function TasksPageLayout() {
|
|
return (
|
|
<div className="max-w-6xl mx-auto px-8">
|
|
<main>
|
|
<Outlet />
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export { TasksPageLayout };
|