import React from "react"; export function Platforms({ platforms, browsers }) { return ( {platforms.map((platform) => ( {platform} ))} ); }