- added Konvas lib
- added feed from proof of concept
This commit is contained in:
@@ -1,9 +1,15 @@
|
||||
import { createFileRoute } from '@tanstack/react-router'
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import CameraGrid from "../features/cameras/components/CameraGrid";
|
||||
|
||||
export const Route = createFileRoute('/baywatch')({
|
||||
export const Route = createFileRoute("/baywatch")({
|
||||
component: RouteComponent,
|
||||
})
|
||||
});
|
||||
|
||||
function RouteComponent() {
|
||||
return <div>Hello "/baywatch"!</div>
|
||||
return (
|
||||
<div>
|
||||
<h2 className="text-xl font-semibold">Cameras</h2>
|
||||
<CameraGrid />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user