1: UI works, receiving location updates
This commit is contained in:
12
ui/app/components/Home.js
Normal file
12
ui/app/components/Home.js
Normal file
@@ -0,0 +1,12 @@
|
||||
class Home extends Shadow {
|
||||
render() {
|
||||
ZStack(() => {
|
||||
|
||||
})
|
||||
.backgroundColor("#aebdff")
|
||||
.display("block")
|
||||
.width(100, vw).height(100, vh)
|
||||
}
|
||||
}
|
||||
|
||||
registerShadow(Home)
|
||||
12
ui/app/index.html
Normal file
12
ui/app/index.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Blockcatcher</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="/_/icons/logo.svg">
|
||||
<script src="/_/code/quill.js"></script>
|
||||
<script type="module" src="/index.js"></script>
|
||||
</head>
|
||||
<body style="margin: 0px">
|
||||
</body>
|
||||
</html>
|
||||
2
ui/app/index.js
Normal file
2
ui/app/index.js
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./components/Home.js"
|
||||
Home()
|
||||
Reference in New Issue
Block a user