import React from 'react'; import { Avatar, Icon } from 'antd'; import classNames from 'classnames'; import styles from './NoticeList.less'; export default function NoticeList({ data = [], onClick, onClear, title, locale }) { if (data.length === 0) { return (
{locale.emptyText}
); } return (
{locale.clear}{title}
); }