Skip to content

Commit

Permalink
export components
Browse files Browse the repository at this point in the history
  • Loading branch information
twnlink committed Aug 21, 2023
1 parent c165ed8 commit fd334b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/components.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { html, render, $, isObservable } from "voby";
customElements.define(
"neptune-reactive-root",
class extends HTMLElement {
constructor(children) {
constructor() {
super();
this.c = () => {};
};
Expand Down
2 changes: 2 additions & 0 deletions src/windowObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import * as voby from "voby";
import * as patcher from "spitroast";
import * as utils from "./api/utils.js";
import * as plugins from "./api/plugins.js";
import * as components from "./ui/components.js";
import intercept from "./api/intercept.js";
import { observe } from "./api/observe.js";
import registerTab from "./api/registerTab.js";
Expand All @@ -20,4 +21,5 @@ export default {
showModal,
voby,
plugins,
components
};

0 comments on commit fd334b4

Please sign in to comment.