import ServicesGetStatus from "./methods/services_get_status"; import SmartGetList from "./methods/smart_get_list"; import DownloaderGetDownloadList from "./methods/downloader_get_downloadlist"; export default function Component({ service }) { switch (service.widget.method) { case "services.getStatus": return ; case "smart.getListBg": return ; case "downloader.getDownloadList": return ; default: return null; } }