react-server675fbba4
react-servertreemainexamplesphotossrcphotos.ts
examples/photos/src/photos.tsts356 Bb03e29b3
import { faker } from "@faker-js/faker";

export type Photo = {
  id: string;
  username: string;
  imageSrc: string;
};

const photos: Photo[] = Array.from({ length: 9 }, (_, index) => ({
  id: `${index}`,
  username: faker.internet.userName(),
  imageSrc: process.env.CI ? "/placeholder.svg" : faker.image.urlPicsumPhotos(),
}));

export default photos;