aboutsummaryrefslogtreecommitdiff
path: root/examples/ssr/src/models/db.json
blob: 76f9e4da3432cadfe3b6499fd1aeae6d7de0260d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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"
    }
  ]
}