Skip to content

Instantly share code, notes, and snippets.

@emanueleDiVizio
Created June 1, 2020 17:35
Show Gist options
  • Save emanueleDiVizio/95789a30abd7e6d6ac8ce835c76c7463 to your computer and use it in GitHub Desktop.
Save emanueleDiVizio/95789a30abd7e6d6ac8ce835c76c7463 to your computer and use it in GitHub Desktop.
const ShiftBadge = () => {
const isOnShift = useIsOnShift()
return isOnShift ? (
<View style={styles.container}>
<Text style={styles.text}>
Currently on shift and receiving reminders
</Text>
</View>
) : (
<></>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment