Files
react/db.json
T

56 lines
1.3 KiB
JSON

{
"products": [
{
"id": 1,
"name": "Sneakers Red & White 2025",
"brand": "NIKE",
"price": 38.0,
"imageUrl": "./src/assets/images/sneakers-image.jpg"
},
{
"id": 2,
"name": "Sneakers Red & White 2025",
"brand": "NIKE",
"price": 38.0,
"imageUrl": "./src/assets/images/sneakers-image.jpg"
},
{
"id": 3,
"name": "Sneakers Red & White 2025",
"brand": "NIKE",
"price": 38.0,
"imageUrl": "./src/assets/images/sneakers-image.jpg"
}
],
"articles": [
{
"id": 1,
"title": "Статья 1",
"author": "Иванов Иван Иванович",
"createDate": "2020-01-15",
"content": "Основной текст статьи"
}
],
"projects": [
{
"id":1,
"name": "Project 1",
"status": "work",
"description": "Very important!",
"tasks": [
{
"id":1,
"title":"Task 1",
"description": "Описание задачи"
},
{
"id":2,
"title":"Task 2",
"description": "Описание задачи 2"
}
]
}
]
}