import React, { Component } from 'react';
import Pic from 'react-pic';
const images = [
{
width: 40,
url: 'http://placehold.it/40?text=♥'
},
{
width: 250,
url: 'http://placehold.it/250?text=♥'
}
];
export default class Example extends Component {
render() {
return <Pic images={images} />;
}
}