2025-11-24 22:07:08 +00:00
|
|
|
import { createFileRoute } from "@tanstack/react-router";
|
2025-11-26 13:00:41 +00:00
|
|
|
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>
|
2025-11-26 13:00:41 +00:00
|
|
|
<OutputForms />
|
2025-11-24 22:07:08 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
2025-11-20 19:09:43 +00:00
|
|
|
}
|