mirror of
https://github.com/gethomepage/homepage.git
synced 2026-01-12 23:20:15 -05:00
8 lines
190 B
JavaScript
8 lines
190 B
JavaScript
import useSWR from "swr";
|
|
|
|
import { formatProxyUrl } from "./api-helpers";
|
|
|
|
export default function useWidgetAPI(widget, ...options) {
|
|
return useSWR(formatProxyUrl(widget, ...options));
|
|
}
|