const Component = ({
const someBoolean
return (
<Component
prop1
prop2
I want to use prop1 ONLY when someBoolean is true, otherwise prop2 should be used. What is the best way to do this ?
So say someBoolean is true I would have
const Component = ({
const someBoolean
return (
<Component
prop1
Otherwise I would have
const Component = ({
const someBoolean
return (
<Component
prop2