rsnext/examples/with-react-multi-carousel/components/image.js

13 lines
215 B
JavaScript
Raw Normal View History

import React from 'react'
const Image = ({ url, alt }) => (
2019-05-29 01:06:13 +02:00
<img
draggable={false}
style={{ width: '100%', height: '100%', position: 'relative' }}
src={url}
alt={alt}
/>
)
export default Image