OutputOperationPanel.tsx 354 B

12345678910111213141516
  1. import React from 'react';
  2. import SearchPanel from './SearchPanel';
  3. import OutputActionPanel from './OutputActionPanel';
  4. const OutputOperationPanel: React.FC = () => {
  5. return (
  6. <div className="w-full">
  7. <SearchPanel />
  8. <div className="mt-4">
  9. <OutputActionPanel />
  10. </div>
  11. </div>
  12. );
  13. };
  14. export default OutputOperationPanel;