feat(frontend): added the start to the material help center

This commit is contained in:
2025-03-06 19:35:01 -06:00
parent c30a48c4b8
commit aae9813f9c
4 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import MaterialHelperPage from "@/components/logistics/materialHelper/materialHelperPage";
import {createFileRoute} from "@tanstack/react-router";
export const Route = createFileRoute("/(logistics)/materialHelper/")({
component: RouteComponent,
});
function RouteComponent() {
return (
<div>
<MaterialHelperPage />
</div>
);
}