import Link from 'next/link'; export default function Org({ org }) { return ( <> {org ? ( <> {org.title || org.name} ) : ( '' )} ); }