- import React from 'react';
- import SearchPanel from './SearchPanel';
- import OutputActionPanel from './OutputActionPanel';
- const OutputOperationPanel: React.FC = () => {
- return (
- <div className="w-full">
- <SearchPanel />
- <div className="mt-4">
- <OutputActionPanel />
- </div>
- </div>
- );
- };
- export default OutputOperationPanel;
|