import React from 'react' import { Icon } from 'antd' export default (props) => { const { dataset = {}, onPreview, onDelete, onClick, onSticky } = props const { url } = dataset const handlePreview = () => { onPreview && onPreview(dataset) } const handleDelete = () => { onDelete && onDelete(dataset) } const handleClick = () => { return onClick ? onClick(dataset) : null } const handleSticky = () => { onSticky && onSticky(dataset) } return (
image
) }