import React from 'react' export default function WorldArchiveNotice({ notice }) { if (!notice) { return null } const currentEdition = notice.current_edition || null return (
{notice.eyebrow ?
{notice.eyebrow}
: null} {notice.title ?
{notice.title}
: null} {notice.description ?

{notice.description}

: null}
{currentEdition?.public_url ? ( Open current edition ) : null}
) }