mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -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
12 lines
374 B
JavaScript
12 lines
374 B
JavaScript
import createTabbedEditor from "@/components/visualizations/editor/createTabbedEditor";
|
|
|
|
import ColumnsSettings from "./ColumnsSettings";
|
|
import GridSettings from "./GridSettings";
|
|
|
|
import "./editor.less";
|
|
|
|
export default createTabbedEditor([
|
|
{ key: "Columns", title: "Columns", component: ColumnsSettings },
|
|
{ key: "Grid", title: "Grid", component: GridSettings },
|
|
]);
|