Files
Mav-Mobile-UI/src/components/SightingOverview/SightingCanvas.tsx
2025-08-13 14:23:48 +01:00

16 lines
360 B
TypeScript

import { useLatestSighting } from "../../hooks/useLatestSighting";
const SightingCanvas = () => {
const { canvasRef } = useLatestSighting();
return (
<div className="w-70 flex flex-col">
<canvas
ref={canvasRef}
className="items-center w-full h-10 object-contain block"
/>
</div>
);
};
export default SightingCanvas;