Created
July 23, 2021 21:08
-
-
Save DoctorDerek/800bfb6c519a6002dc9ca1ba74572192 to your computer and use it in GitHub Desktop.
SCREAMING_SNAKE_CASE in React Web Development π https://medium.com/p/2fbd46cabd42
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
// β 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