<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
var React = require(‘react’);
var ReactDOM = require(‘react-dom’);
function makeDoggy (e) {
// Call this extremely useful function on an .
// The will become a picture of a doggy.
e.target.setAttribute(‘src’, ‘https://s3.amazonaws.com/codecademy-content/courses/React/react_photo-puppy.jpeg’);
e.target.setAttribute(‘alt’, ‘doggy’);
}
var kitty = (
src=“https://s3.amazonaws.com/codecademy-content/courses/React/react_photo-kitty.jpg”
alt=“kitty” />
);
ReactDOM.render(, document.getElementById(‘app’)
);
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
```Replace this line with your code.
<do not remove the three backticks above>