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