Basic.tsx 327 Bytes
Newer Older
陈龙's avatar
陈龙 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import React from 'react';
import BasicReport from '../index';

const Demo = () => {
  return (
    <div>
      <h3>报表</h3>
      <div style={{ height: '600px' }}>
        <BasicReport
          params={{
            reportName: '订单合同',
          }}
        />
      </div>
    </div>
  );
};

export default Demo;