import React from 'react' import BuildControl from './BuildControl/BuildControl'; import classes from './BuildControls.css'; const controls = [ { name: 'Salad', type: 'salad'}, { name: 'Cheese', type: 'cheese'}, { name: 'Bacon', type: 'bacon'}, { name: 'Meat', type: 'meat'}, ]; const buildControls = (props) => (
{controls.map( ctrl => ( props.ingredientAdded(ctrl.type) }/> ))}
) export default buildControls;