Created
February 27, 2025 20:30
-
-
Save pmutua/8f08e4a824bba0c4aadda6044dd48cdf to your computer and use it in GitHub Desktop.
api-saas-users-demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const userData: User[] = [ | |
{ | |
id: "1", | |
username: "user1", | |
password: "password1", | |
firstName: "John", | |
lastName: "Doe", | |
email: "[email protected]" | |
}, | |
{ | |
id: "2", | |
username: "user2", | |
password: "password2", | |
firstName: "Jane", | |
lastName: "Smith", | |
email: "[email protected]" | |
}, | |
{ | |
id: "3", | |
username: "user3", | |
password: "password3", | |
firstName: "Alice", | |
lastName: "Johnson", | |
email: "[email protected]" | |
}, | |
{ | |
id: "4", | |
username: "user4", | |
password: "password4", | |
firstName: "Michael", | |
lastName: "Brown", | |
email: "[email protected]" | |
}, | |
{ | |
id: "5", | |
username: "user5", | |
password: "password5", | |
firstName: "Emily", | |
lastName: "Davis", | |
email: "[email protected]" | |
}, | |
{ | |
id: "6", | |
username: "user6", | |
password: "password6", | |
firstName: "William", | |
lastName: "Wilson", | |
email: "[email protected]" | |
}, | |
{ | |
id: "7", | |
username: "user7", | |
password: "password7", | |
firstName: "Olivia", | |
lastName: "Miller", | |
email: "[email protected]" | |
}, | |
{ | |
id: "8", | |
username: "user8", | |
password: "password8", | |
firstName: "James", | |
lastName: "Garcia", | |
email: "[email protected]" | |
}, | |
{ | |
id: "9", | |
username: "user9", | |
password: "password9", | |
firstName: "Sophia", | |
lastName: "Martinez", | |
email: "[email protected]" | |
}, | |
{ | |
id: "10", | |
username: "user10", | |
password: "password10", | |
firstName: "Liam", | |
lastName: "Lopez", | |
email: "[email protected]" | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment