This commit is contained in:
Fred KISSIE
2025-11-04 13:57:55 +01:00
parent 8ba04aeb74
commit 03e0e8d9c2
6 changed files with 152 additions and 36 deletions

View File

@@ -0,0 +1,20 @@
"use client";
import { useQuery } from "@tanstack/react-query";
interface ProductUpdatesSectionProps {}
const data = {};
export default function ProductUpdates({}: ProductUpdatesSectionProps) {
const versions = useQuery({
queryKey: []
});
return (
<>
<small className="text-xs text-muted-foreground flex items-center gap-2">
3 more updates
</small>
</>
);
}