mirror of
https://github.com/getredash/redash.git
synced 2026-03-21 16:00:09 -04:00
* Prettier all the JS files * Add GitHub Action to autoformat code pushed to master * Fix eslint violation due to formatting. * Remove GitHub actions for styling * Add restyled.io config
13 lines
281 B
JavaScript
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;
|