|
|
|
|
|
by steinuil
2546 days ago
|
|
This is more of an issue with JS than React. ReasonML also has JSX support and since `if` is an expression rather than a statement you can do this: <div>
{if (cond) {
<Comp1 />
} else {
<Comp2 />
}}
</div>
Or even: <div>
{switch (expr) {
| A => <CompA />
| B => <CompB />
| _ => <CompC />
}}
</div>
|
|