UNPKG

react-app-shell

Version:

react打包脚本和example, 这里的版本请忽略

14 lines (11 loc) 368 B
import React from 'react'; import style from './style.less'; import share_img from '../../../public/images/group/share.png'; export default function ShareLayerModal(props) { const {onCancel} = props; return ( <div className={style['share-container']} onClick={() => onCancel && onCancel()}> <img src={share_img}/> </div> ); }