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

16 lines
358 B
TypeScript
Raw Normal View History

import { createFileRoute } from "@tanstack/react-router";
import CameraGrid from "../features/cameras/components/CameraGrid";
2025-11-20 19:09:43 +00:00
export const Route = createFileRoute("/baywatch")({
2025-11-20 19:09:43 +00:00
component: RouteComponent,
});
2025-11-20 19:09:43 +00:00
function RouteComponent() {
return (
<div>
<h2 className="text-xl font-semibold">Cameras</h2>
<CameraGrid />
</div>
);
2025-11-20 19:09:43 +00:00
}