mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-18 02:29:49 +00:00
6 lines
194 B
JavaScript
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} />;
|
|
}
|