あるチュートリアルの中で次のような記述がありました。
(Aux.js)
jsx
1const aux = props => props.children; 2 3export default aux; 4
(Person.js)
jsx
1import React, { Component } from "react"; 2import Aux from "../../../hoc/Aux"; 3 4import classes from "./Person.css"; 5 6class Person extends Component { 7 render() { 8 console.log("[Person.js] rendering..."); 9 return ( 10 <Aux> 11 <p onClick={this.props.click}> 12 I'm {this.props.name} and I am {this.props.age} years old! 13 </p> 14 <p>{this.props.children}</p> 15 <input 16 type="text" 17 onChange={this.props.changed} 18 value={this.props.name} 19 /> 20 </Aux> 21 ); 22 } 23} 24 25export default Person; 26
auxコンポーネントでJSXを囲むことによって、divを作成せずに複数の要素をレンダーできるようになるようです。
これはどういう仕組みなのでしょうか?
親コンポーネントから子コンポーネントにpropsを渡す場合、通常<Hoge hoge={hogehoge}/>
のような書き方をすると思うのですが、今回の例では<Aux>hogehoge<Aux>
のように子要素が入っているだけです。auxコンポーネントがどのようにpropsを受け取っているのかよく分かりません。
ご教授いただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/21 15:34