This is the switch operator you can use in your react jsx code:

 

{(()=>{
  switch (file.downloaded) {
    case 1:
        return <IonText color="medium">Downloaded</IonText>
      break;
 
    default:
      break;
  }
})
}