const { Tabs, Button, Readout } = window.JabberwockeeDesignSystem_646027; function Press() { const D = window.JW_DATA; const [tab, setTab] = React.useState("all"); const list = D.press.filter((p) => tab === "all" || p.film === tab); const count = (k) => D.press.filter((p) => k === "all" || p.film === k).length; return (

Press

    {list.map((p, i) => (
  1. {String(i + 1).padStart(2, "0")} {p.pub} {p.title} Read
  2. ))}
); } window.Press = Press;