chore(script/jsx): expose RightPanelWidget

This commit is contained in:
Elian Doran
2025-12-20 21:19:53 +02:00
parent 44ca9f457c
commit 34d5793888

View File

@@ -1,10 +1,14 @@
import { Fragment, h } from "preact"; import { Fragment, h } from "preact";
import * as hooks from "preact/hooks"; import * as hooks from "preact/hooks";
import RightPanelWidget from "../widgets/sidebar/RightPanelWidget";
export const preactAPI = Object.freeze({ export const preactAPI = Object.freeze({
// Core // Core
h, h,
Fragment, Fragment,
RightPanelWidget,
...hooks ...hooks
}); });