Created
June 1, 2020 17:35
-
-
Save emanueleDiVizio/95789a30abd7e6d6ac8ce835c76c7463 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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