Demo.tsx 173 B

12345678910
  1. import React from 'react';
  2. import Empty from '../index';
  3. const Demo = () => {
  4. return (
  5. <Empty description={'功能建设中'} />
  6. );
  7. };
  8. export default Demo;