Created
August 28, 2023 05:38
-
-
Save adeleke5140/58100b4f088fd4a61ba97dd8f8ce1e50 to your computer and use it in GitHub Desktop.
interesting type
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
interface BannerProps { | |
type: "base" | "success" | "error"; | |
children: React.ReactNode; | |
} | |
{ | |
[key in BannerProps["type"]]: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment