Files
redash/client/app/visualizations/map/Editor/index.js
2019-12-14 20:07:09 +02:00

14 lines
578 B
JavaScript

import createTabbedEditor from "@/components/visualizations/editor/createTabbedEditor";
import GeneralSettings from "./GeneralSettings";
import GroupsSettings from "./GroupsSettings";
import FormatSettings from "./FormatSettings";
import StyleSettings from "./StyleSettings";
export default createTabbedEditor([
{ key: "General", title: "General", component: GeneralSettings },
{ key: "Groups", title: "Groups", component: GroupsSettings },
{ key: "Format", title: "Format", component: FormatSettings },
{ key: "Style", title: "Style", component: StyleSettings },
]);