import React, { memo } from 'react';
import PointEditor from '../point';
import InnerTabs from 'components/inner-tabs';
import type { LayerType } from '../../types/map';
interface IProps {
type: LayerType;
}
const SpecEditor = ({ type }: IProps) => {
switch (type) {
case 'symbol':
return ;
case 'circle':
return ;
case 'heatmap':
return ;
default:
return ;
}
};
export default memo(SpecEditor);