feat(rfid): front end view of the readers and there status

This commit is contained in:
2025-07-10 21:29:01 -05:00
parent 6584b37cb0
commit f7b4de8130
15 changed files with 533 additions and 36 deletions

View File

@@ -0,0 +1,14 @@
import RfidPage from "@/components/rfid/RfidPage";
import { createFileRoute } from "@tanstack/react-router";
export const Route = createFileRoute("/rfid/")({
component: RouteComponent,
});
function RouteComponent() {
return (
<div>
<RfidPage />
</div>
);
}