mirror of
https://github.com/benphelps/homepage.git
synced 2026-02-11 03:06:47 +01: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));
|
|
}
|