YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* 値なしのpropをコンポーネントに指定する [#yf597af8]
<MyTextBox autocomplete />
<MyTextBox autocomplete={true} />
- 上の2行は同じ扱いで、MyTextBoxコンポーネントのprops.aut...
- ただし、値なしのpropは推奨されてない
- なお、もしprops.autocomplete2のように存在しないプロパテ...
** 参考 [#a98a00d0]
- https://reactjs.org/docs/jsx-in-depth.html#props-defaul...
- https://stackoverflow.com/questions/37828543/how-to-pas...
終了行:
* 値なしのpropをコンポーネントに指定する [#yf597af8]
<MyTextBox autocomplete />
<MyTextBox autocomplete={true} />
- 上の2行は同じ扱いで、MyTextBoxコンポーネントのprops.aut...
- ただし、値なしのpropは推奨されてない
- なお、もしprops.autocomplete2のように存在しないプロパテ...
** 参考 [#a98a00d0]
- https://reactjs.org/docs/jsx-in-depth.html#props-defaul...
- https://stackoverflow.com/questions/37828543/how-to-pas...
ページ名: