);
};
export const InstalledChannelCardBody: React.FC<
InstalledChannelCardBodyProps
> = ( { installedChannel } ) => {
/**
* The description section in the channel card.
*
* If setup is not completed, this would be the channel description.
*
* If setup is completed, this would be an element with sync status and issue status.
*/
const description = ! installedChannel.isSetupCompleted ? (
installedChannel.description
) : (
);
/**
* The action button in the channel card.
*
* If setup is not completed, this would be a "Finish setup" primary button.
*
* If setup is completed, this would be a "Manage" secondary button.
*/
const button = ! installedChannel.isSetupCompleted ? (
) : (
);
return (
}
name={ installedChannel.title }
description={ description }
button={ button }
/>
);
};