Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tinazone
/
word-to-code
like
6
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f4647f9
word-to-code
/
pages
/
api
/
hello.js
tinazone
Upload 44 files
21d7fc3
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
171 Bytes
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
export
default
function
handler
(
req, res
) {
res.
status
(
200
).
json
({
name
:
"John Doe"
});
}