import React from 'react'; interface NewsMarqueeProps { titles: string[]; } export const NewsMarquee: React.FC = ({ titles }) => { if (titles.length === 0) { return null; } // Join all titles with a separator and duplicate for seamless looping const marqueeText = titles.join(' --- ') + ' --- ' + titles.join(' --- '); return (
{marqueeText}
); };