-
Notifications
You must be signed in to change notification settings - Fork 462
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e8c218b
commit 8221267
Showing
20 changed files
with
43 additions
and
36 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
Empty file.
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
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,30 @@ | ||
import useContractCallCardProps from "./ContractCall/useContractCallCardProps" | ||
import useDiscordCardProps from "./Discord/useDiscordCardProps" | ||
import useFormCardProps from "./Forms/useFormCardProps" | ||
import useGatherCardProps from "./Gather/useGatherCardProps" | ||
import useGithubCardProps from "./Github/useGithubCardProps" | ||
import useGoogleCardProps from "./Google/useGoogleCardProps" | ||
import usePoapCardProps from "./Poap/usePoapCardProps" | ||
import usePointsCardProps from "./Points/usePointsCardProps" | ||
import usePolygonIDCardProps from "./PolygonID/usePolygonIDCardProps" | ||
import useSecretTextCardProps from "./SecretText/useSecretTextCardProps" | ||
import useTelegramCardProps from "./Telegram/useTelegramCardProps" | ||
import useTokenCardProps from "./Token/hooks/useTokenCardProps" | ||
import useUniqueTextCardProps from "./UniqueText/useUniqueTextCardProps" | ||
import { CardPropsHook, RewardComponentMap } from "./types" | ||
|
||
export const cardPropsHooks = { | ||
GATHER_TOWN: useGatherCardProps, | ||
POLYGON_ID: usePolygonIDCardProps, | ||
TELEGRAM: useTelegramCardProps, | ||
POAP: usePoapCardProps, | ||
POINTS: usePointsCardProps, | ||
TEXT: useSecretTextCardProps, | ||
ERC20: useTokenCardProps, | ||
GOOGLE: useGoogleCardProps, | ||
DISCORD: useDiscordCardProps, | ||
UNIQUE_TEXT: useUniqueTextCardProps, | ||
CONTRACT_CALL: useContractCallCardProps, | ||
FORM: useFormCardProps, | ||
GITHUB: useGithubCardProps, | ||
} as const satisfies RewardComponentMap<CardPropsHook> |
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