UNPKG

286 BTypeScriptView Raw
1import { jsx } from '../../jsx';
2import SunburstView from './sunburstView';
3import IcicleView from './icicleView';
4
5export default (props) => {
6 const { coord } = props;
7 if (coord.type === 'polar') {
8 return <SunburstView {...props} />;
9 }
10 return <IcicleView {...props} />;
11};