私はreactjsで始まり、私のjsxへのホットリロードをしようとしています。私はこのアプリを分けた:https://github.com/gaearon/react-hot-boilerplate/tree/next。jsxの反応ホットローダーを作成するには?
私はわずかにapp.jsを変更:私は、H1タグ内のテキストは、ブラウザを更新している変更すると
import React, { Component } from 'react';
export default class App extends Component {
constructor(){
super();
this.state = {
txt: 'this is the txt',
cat: 0
}
}
render() {
return (<div>
{this.state.txt}
<h1>sdfdsfdsfs, world.</h1>
</div>
);
}
}
。しかし、私はtxtプロパティを変更すると何も起こりません。これをどうやって動かすことができますか?
あなたは意味しますか? – garrettmaring