mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-06 21:57:48 +01:00
7 lines
211 B
JavaScript
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" />;
|
|
}
|