feat: use stubs for orders data (#64)

This commit is contained in:
RustamRu
2025-01-18 23:02:45 +03:00
parent 1ec9f1a7ec
commit 949416d2a3
6 changed files with 365 additions and 30 deletions

View File

@@ -0,0 +1,11 @@
const orderStatus = {
CANCELLED: 'cancelled',
PROGRESS: 'progress',
PENDING: 'pending',
WORKING: 'working',
COMPLETE: 'complete',
}
module.exports = {
orderStatus
}