You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
424 B
Markdown
17 lines
424 B
Markdown
7 years ago
|
```js
|
||
|
const noop = () => {};
|
||
|
|
||
|
const items = [
|
||
|
{ objectURL: 'https://placekitten.com/800/600', contentType: 'image/jpeg' },
|
||
|
{ objectURL: 'https://placekitten.com/900/600', contentType: 'image/jpeg' },
|
||
|
{ objectURL: 'https://placekitten.com/1000/800', contentType: 'image/jpeg' },
|
||
|
];
|
||
|
|
||
|
<div style={{position: 'relative', width: '100%', height: 500}}>
|
||
|
<LightboxGallery
|
||
|
items={items}
|
||
|
onSave={noop}
|
||
|
/>
|
||
|
</div>
|
||
|
```
|