- 1
react
class Image extends React.Component { render() { return <img src={................props.......... } />; } } what are the answers for blanks
4 Antworten
0
What have you tried so far ?
+ 1
Do it by yourself.
The sololearn quiz is for learning purposes. You should know how to fill it if you learn the lessons properly. If we give you the direct answer you will learn nothing. If you have any problems with the previous lesson, you can have a look at the comments. The comments are very useful.
+ 1
class Image extends React.Component {
render() {
return <img src={this.props.url} />;
}
}
- 1
props in class components