// SimpleViews — News, Talks, Service, Awards, Patents. const XV = window.WINTELAcademicDesignSystem_045d4f; function NewsItem({ item }) { const [open, setOpen] = React.useState(false); const hasEmbed = !!item.embed; const hasVideo = !!item.video; const expandable = hasEmbed || hasVideo; return (
  • setOpen((v) => !v) : undefined} role={expandable ? 'button' : undefined} aria-expanded={expandable ? open : undefined} style={{ display: 'flex', alignItems: 'flex-start', gap: '1rem', padding: '1rem 0', cursor: expandable ? 'pointer' : 'default' }}> {item.date}

    {item.title}

    {expandable ? ( {hasVideo ? ( ) : ( )} ) : null}
    {expandable && open ? (
    {hasVideo ? (