add pybutton and pytitle

This commit is contained in:
Fabio Pliger
2022-04-20 15:41:51 -05:00
parent f5b168a45e
commit 3aa3ba02be
5 changed files with 141 additions and 12 deletions

View File

@@ -4,12 +4,16 @@ import { PyScript } from "./components/pyscript";
import { PyRepl } from "./components/pyrepl";
import { PyEnv } from "./components/pyenv";
import { PyBox } from "./components/pybox";
import { PyButton } from "./components/pybutton";
import { PyTitle } from "./components/pytitle";
import { PyWidget } from "./components/base";
let xPyScript = customElements.define('py-script', PyScript);
let xPyRepl = customElements.define('py-repl', PyRepl);
let xPyEnv = customElements.define('py-env', PyEnv);
let xPyBox = customElements.define('py-box', PyBox);
let xPyButton = customElements.define('py-button', PyButton);
let xPyTitle = customElements.define('py-title', PyTitle);
let xPyWidget = customElements.define('py-register-widget', PyWidget);