import Step from '../Step'; import { ListGroup, ListGroupItem } from 'reactstrap'; export default function ResultsStep(props) { const stepContent = (
Plant List
{props.plants.map(function (plant, i) { return {plant.name}; })}
) return ( ) }