import { h } from 'preact'; export default function CompanyLogo({ user }) { return ( {user.img ? ( ) : ( {user.name} )} ); }