Initial commit from Create Next App

This commit is contained in:
Thomas Ruoff
2020-06-27 00:08:55 +02:00
commit 699df3415b
8 changed files with 7323 additions and 0 deletions

6
pages/api/hello.js Normal file
View File

@@ -0,0 +1,6 @@
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
export default (req, res) => {
res.statusCode = 200
res.json({ name: 'John Doe' })
}