add AdGuard widget

This commit is contained in:
Ben Phelps
2022-09-16 14:05:56 +03:00
parent 37d8d7a2f8
commit ddb2a74540
5 changed files with 56 additions and 1 deletions

View File

@@ -25,6 +25,7 @@ import CoinMarketCap from "./widgets/service/coinmarketcap";
import Gotify from "./widgets/service/gotify";
import Prowlarr from "./widgets/service/prowlarr";
import Jackett from "./widgets/service/jackett";
import AdGuard from "./widgets/service/adguard";
const widgetMappings = {
docker: Docker,
@@ -52,6 +53,7 @@ const widgetMappings = {
gotify: Gotify,
prowlarr: Prowlarr,
jackett: Jackett,
adguard: AdGuard,
};
export default function Widget({ service }) {