Untitled

 avatar
unknown
plain_text
2 years ago
476 B
5
Indexable
const usersData = [
  {
    id: 1,
    name: 'Budi Santoso',
    username: 'budi_santoso',
    email: 'budi@example.com',
    address: {
      street: 'Jl. Pahlawan 45',
      city: 'Jakarta',
      zipcode: '12345',
    },
  },
  {
    id: 2,
    name: 'Putri Wulandari',
    username: 'putri_wulan',
    email: 'putri@example.com',
    address: {
      street: 'Jl. Merdeka 78',
      city: 'Bandung',
      zipcode: '67890',
    },
  },
  // Add more user data as needed
];
Editor is loading...
Leave a Comment