mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-22 05:45:19 +01:00
7 lines
211 B
React
7 lines
211 B
React
![]() |
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" />;
|
||
|
}
|