jsx/solid bundle

This commit is contained in:
Robin Appelman 2023-04-10 18:57:46 +02:00
commit 10ea8ddcbc
16 changed files with 458 additions and 44 deletions

7
script/demo_list.js Normal file
View file

@ -0,0 +1,7 @@
import {render} from "solid-js/web/dist/web.js";
import {ready} from "./ready";
import {FilterBar} from "./filterbar"
ready(() => {
render(() => <FilterBar name="World" />, document.querySelector('.filter-bar'))
});