PadApp/pages/remote/remote.jsx
jusax23 6c68f2bf20
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
basic menu, colors, else
2022-12-11 22:23:21 +01:00

17 lines
No EOL
467 B
JavaScript

import { bg } from "../../js/color";
import { SWindow, s } from "../../stear/main";
import connect from "./connect";
export default new SWindow({
call: async (stear,{find, resolve, close, render, call, event, include},args)=>{
return <div>
remote Main
<button event={{pointerdown:()=>{
call(connect,{},false);
}}}> connect</button>
</div>;
},
backgroundColor: "transparent"
})