add Jellyfin integration

This commit is contained in:
Ben Phelps
2022-08-26 22:34:24 +03:00
parent 7647d8eb4e
commit 1141401e56
3 changed files with 10 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
import Emby from "./emby";
// Jellyfin and Emby share the same API, so proxy the Emby widget to Jellyfin.
export default function Jellyfin({ service }) {
return <Emby service={service} title="Jellyfin" />;
}