[react] default props value


Reactでは、propsのvalueを単独で使用しない場合はbooleanとします.
(html 5では、booleanを持つのは特定の属性のみです.)

Default Props

class App extends React.Component {
  render() {
    return <MyComponent hasButton/>;
  }
}
// MyComponent내에서 this.props.hasButton은 true가 된다.

Ref


Docs: https://reactjs.org/docs/jsx-in-depth.html#props-default-to-true
Html5: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes#boolean_attributes