OperationPanel.tsx 479 B

12345678910111213141516171819202122
  1. import React from 'react';
  2. import { Layout } from 'antd';
  3. import FunctionArea from './FunctionArea';
  4. import TransferArea from './TransferArea';
  5. const { Content, Footer } = Layout;
  6. const OperationPanel = () => {
  7. return (
  8. <Layout className="h-full">
  9. <Content>
  10. <FunctionArea />
  11. </Content>
  12. <Footer className="p-1">
  13. <div>Image State Control</div>
  14. <TransferArea />
  15. </Footer>
  16. </Layout>
  17. );
  18. };
  19. export default OperationPanel;