Created
July 7, 2023 19:35
-
-
Save tom-sherman/da349a07b09ec50728c37358720c5618 to your computer and use it in GitHub Desktop.
Next.js server component vs code snippets
This file contains 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
{ | |
"Next.js Layout": { | |
"prefix": "nextjs-layout", | |
"body": [ | |
"export default function Layout({ children }: { children: React.ReactNode }) {", | |
" $0", | |
"}" | |
] | |
}, | |
"Next.js Page": { | |
"prefix": "nextjs-page", | |
"body": ["export default function ${1:Page}() {", " $0", "}"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment