littledivy / wgui

Tiny GPU-accelerated UI framework for Deno

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wgui

Tiny UI framework for Deno

/** @jsx h */
import { App, Fragment, h, Rect, Text } from "./wgui.ts";

function main() {
  return (
    <App
      styles={{
        width: 800,
        height: 600,
      }}
    >
      <Text>Hello, wgui</Text>
    </App>
  );
}

main();

Examples

./music-app.tsx

https://www.youtube.com/watch?v=wO6ePxjFoFA

image

About

Tiny GPU-accelerated UI framework for Deno


Languages

Language:TypeScript 60.8%Language:JavaScript 23.1%Language:Rust 12.1%Language:WGSL 3.9%