import ConsumeMaterial from "@/components/logistics/materialHelper/consumption/ConsumeMaterial"; import PreformReturn from "@/components/logistics/materialHelper/consumption/MaterialReturn"; import TransferToNextLot from "@/components/logistics/materialHelper/consumption/TransferToNextLot"; import { createFileRoute } from "@tanstack/react-router"; export const Route = createFileRoute( "/(logistics)/materialHelper/consumption/" )({ component: RouteComponent, head: () => ({ meta: [ { name: "description", content: "My App is a web application", }, { title: "LST - Logistics", }, ], }), }); function RouteComponent() { const url: string = window.location.host.split(":")[0]; const auth = localStorage.getItem("auth_token"); return (