-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmockData.ts
15 lines (14 loc) · 1.18 KB
/
mockData.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Mock data for the application
// This data is used in the mock server to simulate a database
export const users = [
{ id: 1, name: 'John Doe', email: '[email protected]', age: 32, role: 'developer', country: 'USA' },
{ id: 2, name: 'Jane Smith', email: '[email protected]', age: 28, role: 'designer', country: 'Canada' },
{ id: 3, name: 'Bob Johnson', email: '[email protected]', age: 45, role: 'manager', country: 'UK' },
{ id: 4, name: 'Maria Garcia', email: '[email protected]', age: 29, role: 'developer', country: 'Spain' },
{ id: 5, name: 'Alex Chen', email: '[email protected]', age: 34, role: 'architect', country: 'China' },
{ id: 6, name: 'Sarah Wilson', email: '[email protected]', age: 31, role: 'developer', country: 'Australia' },
{ id: 7, name: 'Mike Brown', email: '[email protected]', age: 38, role: 'tester', country: 'USA' },
{ id: 8, name: 'Lisa Anderson', email: '[email protected]', age: 27, role: 'designer', country: 'Sweden' },
{ id: 9, name: 'Tom Miller', email: '[email protected]', age: 41, role: 'product_owner', country: 'Germany' },
{ id: 10, name: 'Emma Davis', email: '[email protected]', age: 33, role: 'developer', country: 'France' }
];