import { Card, CardContent, CardHeader, CardTitle, } from "src/components/ui/card"; import { useMempoolApi } from "src/hooks/useMempoolApi"; export function BlockHeightWidget() { const { data: blocks } = useMempoolApi<{ height: number }[]>("/v1/blocks"); if (!blocks?.length) { return null; } return ( Block Height

{blocks[0].height}

); }