import React from 'react'; import { Badge } from 'antd-mobile'; import classNames from 'classnames'; import { BellOutlined } from '@ant-design/icons'; import Style from './mobile.module.less'; export default function Render(props) { const { data, methods } = props; const { count, className, onClick, style } = data; const { goMessageList } = methods; return ( { if (typeof onClick === 'function') { onClick(e); return; } goMessageList(); }}/> ); }