mirror of
https://github.com/outline/outline.git
synced 2026-01-03 17:49:56 -06:00
17 lines
355 B
TypeScript
17 lines
355 B
TypeScript
import * as React from "react";
|
|
import { Hook, PluginManager } from "~/utils/PluginManager";
|
|
import config from "../plugin.json";
|
|
import Icon from "./Icon";
|
|
|
|
PluginManager.add([
|
|
{
|
|
...config,
|
|
type: Hook.Settings,
|
|
value: {
|
|
group: "Integrations",
|
|
icon: Icon,
|
|
component: React.lazy(() => import("./Settings")),
|
|
},
|
|
},
|
|
]);
|