stear/example/empty.js

18 lines
454 B
JavaScript
Raw Normal View History

2022-08-13 17:52:45 +02:00
import { Stear, SWindow, _ } from "../stear/main.js";
const call = async (stear, { find, resolve, close, render, call, event }, args) => {
/*event.onloaded = () => { }*/
/*event.onresolve = async () => { }*/
/*event.onclose = async () => { }*/
/*event.onBeforRerender = async () => { }*/
/*event.onAfterRerender = async () => { }*/
return _({
}, [
]);
}
export default new SWindow({ call, backgroundColor: "#dde" });