12 lines
305 B
React
12 lines
305 B
React
|
import { bg } from "../../js/color";
|
||
|
import { SWindow, s } from "../../stear/main";
|
||
|
|
||
|
|
||
|
export default new SWindow({
|
||
|
call: async (stear,{find, resolve, close, render, call, event, include},args)=>{
|
||
|
return <div>
|
||
|
system Main
|
||
|
</div>;
|
||
|
},
|
||
|
backgroundColor: "transparent"
|
||
|
})
|