21 lines
528 B
TypeScript
21 lines
528 B
TypeScript
import {
|
|
type RouteConfig,
|
|
index,
|
|
layout,
|
|
route,
|
|
} from "@react-router/dev/routes";
|
|
|
|
export default [
|
|
index("routes/home.tsx"),
|
|
|
|
route("/about", "./routes/about.tsx"),
|
|
route("/kontak", "./routes/kontak.tsx"),
|
|
route("/register", "./routes/register.tsx"),
|
|
route("/portofolio", "./routes/portofolio.tsx"),
|
|
route("/login", "./routes/login.tsx"),
|
|
|
|
layout("./layout/DashboardLayout.tsx", [
|
|
route("/dashboard", "./routes/dashboard.tsx"),
|
|
route("/user", "./routes/User.tsx"),
|
|
]),
|
|
] satisfies RouteConfig; |