Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. if(tipo==='ativos' && agendamentosAtivos.length>0)
  2. return <ScrollView>{agendamentosAtivos}</ScrollView>;
  3. if(tipo==='cancelados' && agendamentosCancelados.length>0)
  4. return <ScrollView>{agendamentosCancelados}</ScrollView>;
  5. if(tipo==='historico' && historico.length>0)
  6. return <ScrollView>{historico}</ScrollView>;
  7. return <ScrollView><Text>{tipo === 'historico' ? 'Não há histórico recente': `Não há agendamentos ${tipo}`}</Text></ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement