2022-08-26 22:34:24 +03:00
|
|
|
import Emby from "./emby";
|
|
|
|
|
|
|
|
// Jellyfin and Emby share the same API, so proxy the Emby widget to Jellyfin.
|
|
|
|
export default function Jellyfin({ service }) {
|
2022-09-08 11:48:16 +03:00
|
|
|
return <Emby service={service} />;
|
2022-08-26 22:34:24 +03:00
|
|
|
}
|