18 lines
454 B
JavaScript
18 lines
454 B
JavaScript
|
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" });
|