/* global React */ const REVIEWS = [ { stars:5, quote:'Gave my dad the Top Trumps deck of his football mates for his 70th. He hasn\u2019t put it down.', name:'Priya R.', deck:'Top Trumps' }, { stars:5, quote:'Made a Werewolf deck where my flatmates are the villagers. Game night is unhinged now.', name:'Sam W.', deck:'Werewolf' }, { stars:5, quote:"Two days from order to door. Mum cried, then said 'oh god is that me on the Queen'.", name:'Jess A.', deck:'Personalised' }, ]; function TestimonialBand() { return (
What players say

"Why didn't this exist already?"

{REVIEWS.map((r,i)=>(
{'★'.repeat(r.stars)}

"{r.quote}"

{r.name} {r.deck.toUpperCase()}
))}
); } window.TestimonialBand = TestimonialBand;