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;