2018-04-15 04:27:30 +00:00
|
|
|
```js
|
2018-04-24 20:12:07 +00:00
|
|
|
const noop = () => {};
|
|
|
|
|
2018-05-01 22:37:21 +00:00
|
|
|
<div style={{ position: 'relative', width: '100%', height: 500 }}>
|
2018-04-15 06:28:14 +00:00
|
|
|
<Lightbox
|
2018-04-25 22:15:57 +00:00
|
|
|
objectURL="https://placekitten.com/800/600"
|
|
|
|
contentType="image/jpeg"
|
2018-04-24 20:12:07 +00:00
|
|
|
onSave={noop}
|
2018-04-15 06:28:14 +00:00
|
|
|
/>
|
2018-05-01 22:37:21 +00:00
|
|
|
</div>;
|
2018-04-15 04:27:30 +00:00
|
|
|
```
|