import type { ComponentType } from "react"; import type { Widget } from "@/lib/config/schema"; import { BookmarkWidget } from "./bookmark/Widget"; import { SearchWidget } from "./search/Widget"; type WidgetComponent = ComponentType<{ widget: Extract; }>; export const widgetRegistry: { [K in Widget["type"]]: WidgetComponent } = { bookmark: BookmarkWidget, search: SearchWidget, };