MindDetailPanel.tsx 505 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1 2
import { CanvasPanel, DetailPanel, NodePanel } from 'gg-editor';

陈帅's avatar
陈帅 committed
3
import { Card } from 'antd';
陈帅's avatar
陈帅 committed
4
import React from 'react';
陈帅's avatar
陈帅 committed
5 6 7
import DetailForm from './DetailForm';
import styles from './index.less';

陈帅's avatar
陈帅 committed
8
const MindDetailPanel = () => (
陈帅's avatar
陈帅 committed
9 10 11 12 13 14 15 16 17
  <DetailPanel className={styles.detailPanel}>
    <NodePanel>
      <DetailForm type="node" />
    </NodePanel>
    <CanvasPanel>
      <Card type="inner" size="small" title="Canvas" bordered={false} />
    </CanvasPanel>
  </DetailPanel>
);
陈帅's avatar
陈帅 committed
18 19

export default MindDetailPanel;