import React from 'react' import { Table, Button } from 'react-bootstrap'; const Plants = ({plants, deletePlant}) => { return ( <> { plants.length !== 0 ? { plants.map((plant, index) => { return }) }
Plant name Plant type
{plant.name} {plant.type}
: null } ); } export default Plants