'Proper way to use condition between component and function

what is the best way to use conditional between redux component and function. Tryed to google. but without any luck

const Page = (awesomeValue) => {
 if(awesomeValue) {
    SendRequest()
  } else {
    <Component title={'my awesome title'} />=
  }
}



Solution 1:[1]

I can think of 2 best ways i would do it

1.

{
  return (
   <>
     {awesomeValue && sendRequest()}
     {!awesomeValue && <Component/>}
   </>
  )
}
{
  if(awesomeValue){
    sendRequest();
    return;
  }

  return <Component/>
}

First option is very clean but won't be very good with even slightly more complex operations needed

I try avoid using else unless I have to

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1