This commit is contained in:
metacryst
2026-01-13 17:24:52 -06:00
parent c3f0d8d70d
commit adf25488e4
9 changed files with 47 additions and 160 deletions

View File

@@ -1,20 +0,0 @@
import "./LocationList.js"
import "./Sidebar.js"
import "./MainPanel.js"
class Home extends Shadow {
render() {
ZStack(() => {
HStack(() => {
Sidebar()
MainPanel()
})
})
.backgroundColor("rgb(146, 160, 219)")
.display("block")
.width(100, vw).height(100, vh)
.color("#203051ff")
}
}
register(Home)