testing vercel deployment
This commit is contained in:
11
app/layout.tsx
Normal file
11
app/layout.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
)
|
||||
}
|
3
app/page.tsx
Normal file
3
app/page.tsx
Normal file
@ -0,0 +1,3 @@
|
||||
export default function Page() {
|
||||
return <h1>Hello, Next.js!</h1>
|
||||
}
|
3
app/src/pages/api/graphql/index.ts
Normal file
3
app/src/pages/api/graphql/index.ts
Normal file
@ -0,0 +1,3 @@
|
||||
import { createBuiltMeshHTTPHandler } from './../../../../../.mesh'
|
||||
|
||||
export default createBuiltMeshHTTPHandler()
|
Reference in New Issue
Block a user