function Marquee() { const items = [ 'BATCH BREW DIARIO', 'TOSTADORES INVITADOS', 'V60 · AEROPRESS', 'LECHES VEGETALES', 'TOSTADAS HASTA LAS 13:00', 'CAFÉ DE COMPETICIÓN', ]; // Duplicate for seamless loop const seq = [...items, ...items]; return (
{seq.map((it, i) => ( {it} ))}
); } Object.assign(window, { Marquee });