Web_React #20
210826
Web_React #20 children -Button.js
-App.js
このように単純に機能するのは道具よりも直感的に子供の道具を利用することである.
-Button.js
-App.js
リファレンス
https://www.codeit.kr/courses/react-frontend-development/topics/getting-started-with-react
Web_React #20
function Button({text}) {
return <button>{text}</button>
}
export default Button
buttonというラベルにtextというpropが表示されます.-App.js
import Button from './button';
import Dice from './Dice';
function App() {
return (
<div>
<div>
<Button text="던지기" />
<Button text="처음부터" />
</div>
<Dice color="red" num = {2} />
</div>
)
}
export default App;
Buttonをインポートした後、divラベルに2つのButtonを作成します.このように単純に機能するのは道具よりも直感的に子供の道具を利用することである.
-Button.js
function Button({children}) {
return <button>{children}</button>
}
export default Button
textをサブテキストに変更-App.js
import Button from './Button';
import Dice from './Dice';
function App() {
return (
<div>
<div>
<Button>던지기</Button>
<Button>처음부터</Button>
</div>
<Dice color="red" num = {2} />
</div>
)
}
export default App;
Buttonタグの作成と同様に使用リファレンス
https://www.codeit.kr/courses/react-frontend-development/topics/getting-started-with-react
Reference
この問題について(Web_React #20), 我々は、より多くの情報をここで見つけました https://velog.io/@kimhaech/WebReact-20テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol