JSXにおける条件分岐の適用
定数 show の内容に応じて、
画面に表示するテキストを切り替えてみましょう:
function App() {
let text;
const show = true;
if (show) {
text = 'text1';
} else {
text = 'text2';
}
return <div>
{text}
</div>;
}
変数にテキストではなく、タグ自体を格納することもできます:
function App() {
let text;
const show = true;
if (show) {
text = <p>text1</p>;
} else {
text = <p>text2</p>;
}
return <div>
{text}
</div>;
}