2018-04-26 15:19:19 +00:00
|
|
|
```js
|
|
|
|
const noop = () => {};
|
|
|
|
|
2018-05-05 01:24:33 +00:00
|
|
|
const messages = [
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/800/600',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/900/600',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'foo.tif',
|
|
|
|
attachments: [{ contentType: 'image/tiff' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/980/800',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/656/540',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/762/400',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/920/620',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
2018-04-26 15:19:19 +00:00
|
|
|
];
|
|
|
|
|
2018-05-01 22:37:21 +00:00
|
|
|
<div style={{ position: 'relative', width: '100%', height: 500 }}>
|
2018-05-05 01:24:33 +00:00
|
|
|
<LightboxGallery messages={messages} onSave={noop} />
|
2018-05-01 22:37:21 +00:00
|
|
|
</div>;
|
2018-04-26 15:19:19 +00:00
|
|
|
```
|