Files
HKSingleParty/03_source/mobile/src/pages/DemoStorageExample/data/contacts.ts
2025-06-08 16:16:40 +08:00

37 lines
445 B
TypeScript

const contacts = [
{
name: "Matt Chorsey",
id: 0,
},
{
name: "Lauren Ruthford",
id: 1,
},
{
name: "Jordan Firth",
id: 2,
},
{
name: "Bill Thomas",
id: 3,
},
{
name: "Joanne Pollan",
id: 4,
},
{
name: "Andrea Cornerston",
id: 5,
},
{
name: "Moe Chamont",
id: 6,
},
{
name: "Kelly Richardson",
id: 7,
},
];
export const getContacts = () => contacts;