stear/example/index.js
2022-11-02 14:45:56 +01:00

19 lines
399 B
JavaScript

import { Stear, SWindow } from "../stear/main.js";
import start from "./start.jsx";
var stear = new Stear(document.querySelector("#stear"));
stear.style({
backgroundColor: "#dde",
fontFamily: "Helvetica Neue",
fontWeight: "lighter",
fontSize: "0.9em",
color: "#2a2a2a",
});
/*stear.addElement("connect", connect);
stear.addElement("start", start);*/
stear.call(start, {});