Files
frontend/src/app/api/fake-provinces/route.js

18 lines
257 B
JavaScript

const data = [
{
id : 1,
name : "تهران"
},
{
id : 2,
name : "مشهد"
},
{
id : 3,
name : "اصفهان"
},
];
export async function GET() {
return Response.json({ data });
}