Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DoctorDerek/800bfb6c519a6002dc9ca1ba74572192 to your computer and use it in GitHub Desktop.
Save DoctorDerek/800bfb6c519a6002dc9ca1ba74572192 to your computer and use it in GitHub Desktop.
SCREAMING_SNAKE_CASE in React Web Development 🐍 https://medium.com/p/2fbd46cabd42
// ❌ import error due to leading underscore:
import _Document from "@/src/pages/_document"
// βœ… SCREAMING_SNAKE_CASE
import NEXT_DOCUMENT from "@/src/pages/_document"
// βœ… PascalCase
import NextDocument from "@/src/pages/_document"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment