From 23a08b0a5fdc88c027674e8b9301b2abc5782a26 Mon Sep 17 00:00:00 2001 From: joseph le Date: Mon, 2 Oct 2023 16:21:45 +0700 Subject: [PATCH] change index.js --- server/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/index.js b/server/index.js index 052dee3..f0abc2c 100644 --- a/server/index.js +++ b/server/index.js @@ -5,7 +5,6 @@ app.use(cors()); app.get("/api/products", (req, res) => { const data = [ - { PID: "N9K-C9372PX", VID: "V03", @@ -33,7 +32,6 @@ app.get("/api/products", (req, res) => { ]; res.status(200).send(data); }); - const PORT = 8000; app.listen(PORT, () => {