mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
14 lines
578 B
JavaScript
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 },
|
|
]);
|