this.msg = "THIS IS MY COMPONENT!";
<h1>{this.msg}</h1>※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
import React, { Component } from 'react';
class MyComponent extends Component {
constructor() {
super();
this.msg = "THIS IS MY COMPONENT!";
}
render() {
return (
<h1>{this.msg}</h1>
);
}
}
export default MyComponent;
| 次へ >> |