import React from 'react';
import pic from './empty.png';
import './empty.less';

function Empty({ msg }) {
  return (
    <div className="empty-box text-center">
      <div className="empty-msg">{msg}</div>
      <img src={pic} alt={msg} />
    </div>
  );
}

Empty.defaultProps = {
  msg: '这里目前什么都没有哦～'
};

export default Empty;
