Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

1export const CameraRoll = { 2 getPhotos: jest.fn().mockResolvedValue({ 3 edges: [ 4 {node: {image: {uri: 'path/to/image1.jpg'}}}, 5 {node: {image: {uri: 'path/to/image2.jpg'}}}, 6 {node: {image: {uri: 'path/to/image3.jpg'}}}, 7 ], 8 }), 9}