[next] Bring in the good old PyScript display (#1628)

This commit is contained in:
Andrea Giammarchi
2023-08-09 16:28:06 +02:00
committed by GitHub
parent 27c91e9703
commit 84dcde188b
10 changed files with 209 additions and 26 deletions

View File

@@ -8,6 +8,9 @@
<script type="module" src="../core.js"></script>
</head>
<body>
<py-script>display("Hello PyScript Next")</py-script>
<script type="py">
from pyscript import display
display("Hello PyScript Next")
</script>
</body>
</html>