2022-12-11 22:23:21 +01:00
|
|
|
import { bg } from "../../js/color";
|
|
|
|
import { SWindow, s } from "../../stear/main";
|
|
|
|
import connect from "./connect";
|
2022-12-07 21:59:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
export default new SWindow({
|
|
|
|
call: async (stear,{find, resolve, close, render, call, event, include},args)=>{
|
|
|
|
|
2022-12-11 22:23:21 +01:00
|
|
|
return <div>
|
|
|
|
remote Main
|
|
|
|
<button event={{pointerdown:()=>{
|
|
|
|
call(connect,{},false);
|
|
|
|
}}}> connect</button>
|
|
|
|
</div>;
|
2022-12-07 21:59:01 +01:00
|
|
|
},
|
2022-12-11 22:23:21 +01:00
|
|
|
backgroundColor: "transparent"
|
2022-12-07 21:59:01 +01:00
|
|
|
})
|