import * as React from 'react'; import classnames from 'classnames'; import { RenderProps } from 'src/types/op-table'; import OPDialog from 'src/view/op-dialog'; export default function Image(props: RenderProps) { const { value = '' } = props; const [imgUrl, setImgUrl] = React.useState(''); return ( <>
{ e.stopPropagation(); setImgUrl(value); }} >
{imgUrl ? ( { setImgUrl(''); }} footerActions={['ok']} >
) : null} ); }