Files
BayIQ-UI/src/routes/output.tsx

15 lines
301 B
TypeScript
Raw Normal View History

2025-11-24 22:07:08 +00:00
import { createFileRoute } from "@tanstack/react-router";
import OutputForms from "../features/output/components/OutputForms";
2025-11-20 19:09:43 +00:00
2025-11-24 22:07:08 +00:00
export const Route = createFileRoute("/output")({
2025-11-20 19:09:43 +00:00
component: RouteComponent,
2025-11-24 22:07:08 +00:00
});
2025-11-20 19:09:43 +00:00
function RouteComponent() {
2025-11-24 22:07:08 +00:00
return (
<div>
<OutputForms />
2025-11-24 22:07:08 +00:00
</div>
);
2025-11-20 19:09:43 +00:00
}