Files
2026-07-13 12:58:18 +08:00

10 lines
218 B
TypeScript

export const retrieveUserInfo = () => {
// imagine a database call here
return {
name: "John Doe",
email: "john.doe@example.com",
phone: "+1234567890",
address: "123 Main St, Anytown, USA",
};
};