import variables from 'modules/variables'; export default function Collection({ items, toggleFunction }) { return [
Star Wars
Star Wars Collection A Collection of stuff inspired by the film franchise star wars..
,
{items.map((item) => (
toggleFunction(item)} key={item.name}> icon
{item.display_name || item.name} {item.author}
{item.author}
1
))}
, ]; }