Basic.tsx 330 Bytes
Newer Older
陈龙's avatar
陈龙 committed
1 2 3 4 5 6 7 8 9 10
import React from 'react';
import BasicReport from '../index';

const Demo = () => {
  return (
    <div>
      <h3>报表</h3>
      <div style={{ height: '600px' }}>
        <BasicReport
          params={{
陈龙's avatar
陈龙 committed
11
            reportName: '分公司签单',
陈龙's avatar
陈龙 committed
12 13 14 15 16 17 18 19
          }}
        />
      </div>
    </div>
  );
};

export default Demo;