Files
homepage-Mirror/src/components/services/widgets/service/jellyfin.jsx
2022-08-26 22:34:24 +03:00

7 lines
211 B
JavaScript

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" />;
}