From e32518f4443d0b16cf0ec2301bac8690d57c2360 Mon Sep 17 00:00:00 2001 From: Dan Jutan Date: Tue, 6 Sep 2022 10:41:36 -0400 Subject: [PATCH] lockfile --- examples/ssr/src/products.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 examples/ssr/src/products.json diff --git a/examples/ssr/src/products.json b/examples/ssr/src/products.json new file mode 100644 index 0000000000..76f9e4da34 --- /dev/null +++ b/examples/ssr/src/products.json @@ -0,0 +1,28 @@ +{ + "products": [ + { + "id": 1, + "name": "Cereal", + "price": 3.99, + "image": "/images/products/cereal.jpg" + }, + { + "id": 2, + "name": "Yogurt", + "price": 3.97, + "image": "/images/products/yogurt.jpg" + }, + { + "id": 3, + "name": "Rolled Oats", + "price": 2.89, + "image": "/images/products/oats.jpg" + }, + { + "id": 4, + "name": "Muffins", + "price": 4.39, + "image": "/images/products/muffins.jpg" + } + ] +}