Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #2 of 2


Q: 

So I just set up this awesome helper that "helps" me put pineapple on top of regular pizzas! Yum! Here it is:

export default (pizzaTopping) => (
    pizzaTopping + ' with Pineapple!'
);

Now I want to use it in my pizza component so that every pizza topping has pineapple on it! Which of these examples would not make it work?

userVoice