🆕 Add simple-ui directory and repository link to README

This commit is contained in:
2026-04-27 00:34:09 +08:00
parent 7a8d3e356c
commit b91f50f26c
4 changed files with 19 additions and 0 deletions

Binary file not shown.

6
simple-ui/README.md Normal file
View File

@@ -0,0 +1,6 @@
```shell
perry compile main.ts -o main
```

11
simple-ui/main.ts Normal file
View File

@@ -0,0 +1,11 @@
import{ App, Text, VStack } from "perry/ui";
App({
title:"My App",
width:400,
height:300,
body:VStack(16,[
Text("Hello from Perry!"),
]),
});