Created
April 5, 2023 07:00
-
-
Save CodeNinja47/c6696a5e3e50ebf166ba49e2c9cf49d2 to your computer and use it in GitHub Desktop.
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
export async function GET(request: Request) { | |
return new Response(JSON.stringify([ | |
{ | |
id: 1, | |
title: 'Todo1', | |
description: 'Todo 1 description' | |
}, | |
{ | |
id: 2, | |
title: 'Todo2', | |
description: 'Todo 2 description' | |
}, | |
])) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment