10 lines
307 B
TypeScript
10 lines
307 B
TypeScript
import type { MarketplaceApi } from "../../hooks/useMarketplace";
|
|
|
|
export default function InstalledPane({ mp }: { mp: MarketplaceApi }) {
|
|
return (
|
|
<p className="p-4 text-xs text-[var(--text-secondary)]">
|
|
{mp.updates.length} update{mp.updates.length === 1 ? "" : "s"} available.
|
|
</p>
|
|
);
|
|
}
|