8 lines
112 B
JavaScript

function renderSome(a, b) {
if (a) {
return <div>{b}</div>;
} else {
return <span>{b}</span>;
}
}