Add Prowlarr widget

This commit is contained in:
Francisco Coelho 2022-09-12 17:56:04 +01:00
parent 406358aae9
commit b5538655e0
16 changed files with 138 additions and 1 deletions

View file

@ -20,6 +20,7 @@ import Npm from "./widgets/service/npm";
import Tautulli from "./widgets/service/tautulli";
import CoinMarketCap from "./widgets/service/coinmarketcap";
import Gotify from "./widgets/service/gotify";
import Prowlarr from "./widgets/service/prowlarr";
const widgetMappings = {
docker: Docker,
@ -41,7 +42,8 @@ const widgetMappings = {
npm: Npm,
tautulli: Tautulli,
gotify: Gotify,
sabnzbd: SABnzbd
sabnzbd: SABnzbd,
prowlarr: Prowlarr
};
export default function Widget({ service }) {