6 lines
115 B
React
Raw Normal View History

2022-09-11 17:01:51 +03:00
import Emby from "./emby";
2022-08-26 22:34:24 +03:00
export default function Jellyfin({ service }) {
2022-09-11 17:01:51 +03:00
return <Emby service={service} />;
2022-08-26 22:34:24 +03:00
}