Skip to content

Instantly share code, notes, and snippets.

@nirnejak
Created April 11, 2023 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nirnejak/aba48f2c1b4983c9d213bfb83130241d to your computer and use it in GitHub Desktop.
Save nirnejak/aba48f2c1b4983c9d213bfb83130241d to your computer and use it in GitHub Desktop.
export default function classNames(
...classes: Array<string | boolean | undefined>
): string {
return classes.filter(Boolean).join(" ")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment