19 lines
474 B
TypeScript
19 lines
474 B
TypeScript
import { createFileRoute, redirect } from "@tanstack/react-router";
|
|
import { isAuthenticated } from "../../../utils/auth";
|
|
import { AddProduct } from "../../../pages/AddProduct";
|
|
|
|
export const Route = createFileRoute("/app/_hiddenLayout/add-product")({
|
|
beforeLoad: async () => {
|
|
if (!(await isAuthenticated())) {
|
|
throw redirect({
|
|
to: "/login",
|
|
});
|
|
}
|
|
},
|
|
component: RouteComponent,
|
|
});
|
|
|
|
function RouteComponent() {
|
|
return <AddProduct />;
|
|
}
|