Refactored routing components for better organization and maintainability

This commit is contained in:
2025-12-17 16:07:01 +00:00
parent 775fce7900
commit dab49fd99c
5 changed files with 28 additions and 21 deletions

View File

@@ -6,9 +6,5 @@ export const Route = createFileRoute("/output")({
});
function RouteComponent() {
return (
<div>
<OutputForms />
</div>
);
return <OutputForms />;
}