index.tsx 287 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
import React from 'react';
import { Card } from 'antd';
import { Minimap } from 'gg-editor';

const EditorMinimap = () => {
  return (
    <Card type="inner" size="small" title="Minimap" bordered={false}>
      <Minimap height={200} />
    </Card>
  );
};

export default EditorMinimap;