12 lines
160 B
TypeScript
12 lines
160 B
TypeScript
import{ App, Text, VStack } from "perry/ui";
|
|
|
|
App({
|
|
title:"My App",
|
|
width:400,
|
|
height:300,
|
|
body:VStack(16,[
|
|
Text("Hello from Perry!"),
|
|
]),
|
|
});
|
|
|