import React from "react"; import PropTypes from "prop-types"; import { Box, Button, Card, CardBody, CardFooter, CardHeader, Heading } from "grommet"; import { InstallOption, Trash } from "grommet-icons"; function Marketplace(props) { const plugins = [ { name: "Maps", description: "Google Maps is a mapping service. It offers satellite imagery, aerial photography, street maps, 360° interactive panoramic views of streets, real-time traffic conditions, and route planning for traveling.", installed: true }, { name: "Smart Home", description: "Smart Home Plugin lets you integrate with various well known smart devices allowing you to stream video from various devices.", installed: true }, { name: "Spotify", description: "With Spotify, you have access to a world of music. You can listen to artists and albums, or create your own playlist of your favourite songs.", installed: false }, ]; return ( { plugins.map(i => {i.name} {i.description}