state と props の主な違いは、props は不変であるのに対し、state はユーザーの操作に基づいて変更できることです。

React Props 構文

state と props の主な違いは、props は不変であるのに対し、state はユーザーの操作に基づいて変更できることです。

React Props 例

var HelloMessage = React.createClass({
  render: function() {
    return <h1>Hello {this.props.name}</h1>;  }}); 
ReactDOM.render(
  <HelloMessage name="php.cn" />,  document.getElementById('example')