mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-21 11:15:36 -05:00
26 lines
991 B
TypeScript
26 lines
991 B
TypeScript
import App from './App.svelte';
|
|
|
|
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 { PyInputBox } from './components/pyinputbox';
|
|
import { PyWidget } from './components/base';
|
|
|
|
const xPyScript = customElements.define('py-script', PyScript);
|
|
const xPyRepl = customElements.define('py-repl', PyRepl);
|
|
const xPyEnv = customElements.define('py-env', PyEnv);
|
|
const xPyBox = customElements.define('py-box', PyBox);
|
|
const xPyButton = customElements.define('py-button', PyButton);
|
|
const xPyTitle = customElements.define('py-title', PyTitle);
|
|
const xPyInputBox = customElements.define('py-inputbox', PyInputBox);
|
|
const xPyWidget = customElements.define('py-register-widget', PyWidget);
|
|
|
|
const app = new App({
|
|
target: document.body,
|
|
});
|
|
|
|
export default app;
|