// Auteur : Simon-Pierre Boucher — contact@spboucher.ai "use client"; import { useState } from "react"; export default function RemoveFavorite({ app, itemId, }: { app: string; itemId: string; }) { const [busy, setBusy] = useState(false); return ( ); }