Skip to content

Instantly share code, notes, and snippets.

@adeleke5140
Created August 28, 2023 05:38
Show Gist options
  • Save adeleke5140/58100b4f088fd4a61ba97dd8f8ce1e50 to your computer and use it in GitHub Desktop.
Save adeleke5140/58100b4f088fd4a61ba97dd8f8ce1e50 to your computer and use it in GitHub Desktop.
interesting type
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