12345678910111213141516171819202122 |
- import React from 'react';
- import { Layout } from 'antd';
- import FunctionArea from './FunctionArea';
- import TransferArea from './TransferArea';
- const { Content, Footer } = Layout;
- const OperationPanel = () => {
- return (
- <Layout className="h-full">
- <Content>
- <FunctionArea />
- </Content>
- <Footer className="p-1">
- <div>Image State Control</div>
- <TransferArea />
- </Footer>
- </Layout>
- );
- };
- export default OperationPanel;
|