`S3Album` renders a list of `S3Image` objects:

```jsx
import React from 'react';
import { Amplify } from 'aws-amplify';
import awsconfig from './aws-exports';
import { withAuthenticator, S3Album } from 'aws-amplify-react-native';
Amplify.configure(awsconfig);
const App = () => {
return ;
};
export default withAuthenticator(App);
```
To display objects in a specific folder, supply the `path` property:
```jsx
return ;
```
To display private objects, supply the `level` property:
```jsx
return ;
```
You can use the `filter` property to customize the path of your album:
```jsx
return (
/jpg/i.test(item.path)}
/>
);
```