homepage-plus/src/components/services/widgets/service/jellyfin.jsx
2022-09-08 11:48:16 +03:00

6 lines
194 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} />;
}