feat(rfid): front end view of the readers and there status
This commit is contained in:
14
frontend/src/routes/rfid/index.tsx
Normal file
14
frontend/src/routes/rfid/index.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user