Skip to content

Instantly share code, notes, and snippets.

@granolocks
Created March 20, 2019 12:43
Show Gist options
  • Save granolocks/e8620b2024924f24034e8b26bca678bf to your computer and use it in GitHub Desktop.
Save granolocks/e8620b2024924f24034e8b26bca678bf to your computer and use it in GitHub Desktop.
count of unique classNames in react app
grep -r className= | grep -oe 'className="[a-zA-Z0-9_-]*"' | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment