feat(frontend): ocp added

This commit is contained in:
2025-03-04 16:43:25 -06:00
parent 88f2cf07f5
commit 5b9cadb76e
10 changed files with 183 additions and 40 deletions

View File

@@ -1,21 +1,10 @@
import {createFileRoute, Link} from "@tanstack/react-router";
import OCPPage from "@/components/production/ocp/OcpPage";
import {createFileRoute} from "@tanstack/react-router";
export const Route = createFileRoute("/ocp/")({
component: RouteComponent,
});
function RouteComponent() {
const lines = ["l", "2", "3"];
return (
<div>
<h2>Hello "/ocp/something"!</h2>
{lines.map((line) => {
return (
<div key={line}>
<Link to="/ocp">Specific Line</Link>
</div>
);
})}
</div>
);
return <OCPPage />;
}