@aire-ux/aire-code-panel
Version:
aire-code-panel
18 lines (15 loc) • 349 B
text/typescript
import {
CodePanel
} from "@aire-ux/aire-code-panel/aire-code-panel";
export default function setup() {
window.customElements.define(
'aire-code-panel',
CodePanel
);
Object.defineProperty(window.location, 'href', {
writable: true,
value: 'https://localhost'
});
// (window as any).chai.use(chaiDomDiff);
}
setup();