import { User } from './types';
export const mockUsers: User[] = [
{
id: 1,
name: 'John Doe',
email: 'john@example.com',
role: 'Admin',
status: 'active',
lastLogin: '2024-01-15',
},
{
id: 2,
name: 'Jane Smith',
email: 'jane@example.com',
role: 'User',
status: 'active',
lastLogin: '2024-01-14',
},
{
id: 3,
name: 'Bob Johnson',
email: 'bob@example.com',
role: 'Editor',
status: 'inactive',
lastLogin: '2024-01-10',
},
{
id: 4,
name: 'Alice Brown',
email: 'alice@example.com',
role: 'User',
status: 'pending',
lastLogin: '2024-01-12',
},
{
id: 5,
name: 'Charlie Wilson',
email: 'charlie@example.com',
role: 'Admin',
status: 'active',
lastLogin: '2024-01-16',
},
{
id: 6,
name: 'Diana Davis',
email: 'diana@example.com',
role: 'Editor',
status: 'active',
lastLogin: '2024-01-13',
},
{
id: 7,
name: 'Edward Miller',
email: 'edward@example.com',
role: 'User',
status: 'inactive',
lastLogin: '2024-01-08',
},
{
id: 8,
name: 'Fiona Garcia',
email: 'fiona@example.com',
role: 'User',
status: 'active',
lastLogin: '2024-01-15',
},
];