|
@@ -1,14 +1,21 @@
|
|
|
import React from 'react';
|
|
|
-import { Flex } from 'antd';
|
|
|
+import { Layout } from 'antd';
|
|
|
import FunctionArea from './FunctionArea';
|
|
|
+import TransferArea from './TransferArea';
|
|
|
+
|
|
|
+const { Content, Footer } = Layout;
|
|
|
|
|
|
const OperationPanel = () => {
|
|
|
return (
|
|
|
- <Flex className="h-full" vertical>
|
|
|
- <FunctionArea />
|
|
|
- <div>Image State Control</div>
|
|
|
- <div>Transfer Area</div>
|
|
|
- </Flex>
|
|
|
+ <Layout className="h-full">
|
|
|
+ <Content>
|
|
|
+ <FunctionArea />
|
|
|
+ </Content>
|
|
|
+ <Footer className="p-1">
|
|
|
+ <div>Image State Control</div>
|
|
|
+ <TransferArea />
|
|
|
+ </Footer>
|
|
|
+ </Layout>
|
|
|
);
|
|
|
};
|
|
|
|