Files
redash/client/app/components/ColorBox.jsx
2019-09-16 13:01:48 +03:00

13 lines
281 B
JavaScript

// ANGULAR_REMOVE_ME
import { react2angular } from 'react2angular';
import ColorPicker from '@/components/ColorPicker';
import './color-box.less';
export default function init(ngModule) {
ngModule.component('colorBox', react2angular(ColorPicker.Swatch));
}
init.init = true;