interface SitesProps { id: string; name: string; description: string; networks: string[]; } export default function Sites({ id, name, description, networks }: SitesProps) { return (
{description}
{ networks && networks.length > 0 && (Networks: {networks.join(', ')}
)}