mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-14 08:56:39 +00:00
🚧 wip
This commit is contained in:
20
src/components/ProductUpdates.tsx
Normal file
20
src/components/ProductUpdates.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user