私はクラスを持っています:
export default class Home extends React.Component {
static store = createStore();
constructor() {
super();
// This doesn't work
console.log(this.store);
}
}
store
クラスの上部で定義された変数にアクセスできるようにしたいのですが、方法がわかりません.使用していると想定してthis.store
いましたが、未定義です。