Added new pages to dashboard

This commit was merged in pull request #30.
This commit is contained in:
2024-03-23 17:03:13 +01:00
parent 07f7a90c0d
commit ea4e6b7a59
23 changed files with 743 additions and 313 deletions
@@ -0,0 +1,11 @@
import DashboardLayout from "./DashboardLayout";
import { Outlet } from "react-router-dom";
export default function DashboardAuth() {
return (
<DashboardLayout>
<Outlet />
</DashboardLayout>
)
}