What appears on the screen when this component renders?function Badge() { const count = 0; return ( <div> {count && <span>New</span>} </div> ); }