rsnext/examples/with-react-multi-carousel/components/image.js
2019-05-28 16:06:13 -07:00

12 lines
215 B
JavaScript

import React from 'react'
const Image = ({ url, alt }) => (
<img
draggable={false}
style={{ width: '100%', height: '100%', position: 'relative' }}
src={url}
alt={alt}
/>
)
export default Image