aboutsummaryrefslogtreecommitdiff
path: root/examples/ssr/src/models/db.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ssr/src/models/db.json')
-rw-r--r--examples/ssr/src/models/db.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/ssr/src/models/db.json b/examples/ssr/src/models/db.json
new file mode 100644
index 000000000..76f9e4da3
--- /dev/null
+++ b/examples/ssr/src/models/db.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"
+ }
+ ]
+}