Skip to content

Instantly share code, notes, and snippets.

@igorfelipee
Created April 28, 2021 18:32
Show Gist options
  • Save igorfelipee/e425a1647d10040917cedb0c4f88e613 to your computer and use it in GitHub Desktop.
Save igorfelipee/e425a1647d10040917cedb0c4f88e613 to your computer and use it in GitHub Desktop.
type PrimeAlertMessageProps = {
payload: {
mensagem: string
},
behaviour: 'VISIVEL' | 'DESABILITADO'
}
const PrimeAlertMessage: React.FC<PrimeAlertMessageProps> = ({payload, behaviour}) => {
switch(behaviour) {
case 'VISIVEL':
return <p>{payload.mensagem}</p>
case 'DESABILITADO':
default:
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment