Skip to content

Instantly share code, notes, and snippets.

@tom-sherman
Created July 7, 2023 19:35
Show Gist options
  • Save tom-sherman/da349a07b09ec50728c37358720c5618 to your computer and use it in GitHub Desktop.
Save tom-sherman/da349a07b09ec50728c37358720c5618 to your computer and use it in GitHub Desktop.
Next.js server component vs code snippets
{
"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