/**
* =========================================================================
* PLATEFORME ECO-PANNEAU.FR - VERSION 1.0.0
* Composant : Carte individuelle d'un panneau (Vue Client)
* =========================================================================
*/
const FallbackNull = () => null;
const FallbackDataCard = ({children, className}) => (
{c.name || 'Brouillon'}
{c.location || 'Localisation non définie'}
{c.status === 'Actif' && c.draft_data && (
Modifié
)}
{c.status === 'Actif' && (
)}
{(c.draft_data || c.status !== 'Actif') && (
)}
{c.status === 'Actif' && (
<>
{canChat && hasMessagingFeature && (
)}
{hasCollabFeature && (
)}
{hasNewsletterFeature && (
)}
{canEdit && (
)}
>
)}
{canEdit && !isSuspended && (
)}
{canEdit && c.draft_data && !isSuspended && (
);
};
/* EOF ========== [_react/_clients_panneaux_card.jsx] */