26 lines
631 B
TypeScript
26 lines
631 B
TypeScript
import ConsumeMaterial from "@/components/logistics/materialHelper/consumption/ConsumeMaterial";
|
|
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() {
|
|
return (
|
|
<div>
|
|
<ConsumeMaterial />
|
|
</div>
|
|
);
|
|
}
|