-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Updated Mock Data to Include Club Logos (#1029)
Co-authored-by: Alder Whiteford <[email protected]>
- Loading branch information
1 parent
07b2ab5
commit 8be0c09
Showing
30 changed files
with
32,761 additions
and
4,754 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { SafeAreaView } from 'react-native'; | ||
|
||
import { faArrowsRotate } from '@fortawesome/free-solid-svg-icons'; | ||
|
||
import { Box, Button, Spacing, Text } from '@/src/app/(design-system)'; | ||
|
||
type EventPageErrorProps = { | ||
refetch: React.Dispatch<React.SetStateAction<boolean>>; | ||
}; | ||
|
||
const EventPageError = ({ refetch }: EventPageErrorProps) => { | ||
return ( | ||
<SafeAreaView style={{ margin: Spacing.m, gap: 20 }}> | ||
<Box width="75%" marginTop="m" gap="m"> | ||
<Text variant="header-1">Oops, something went wrong!</Text> | ||
</Box> | ||
<Box> | ||
<Button | ||
variant="iconButton" | ||
icon={faArrowsRotate} | ||
color="black" | ||
iconPosition="left" | ||
size="full" | ||
onPress={() => refetch((prev) => !prev)} | ||
> | ||
Refresh | ||
</Button> | ||
</Box> | ||
</SafeAreaView> | ||
); | ||
}; | ||
|
||
export default EventPageError; |
This file contains 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
Oops, something went wrong.