Hello, i just wanted to introduce you to a component based typescript ui framework that works as a router or just as a ui core.
import { Component, Widget, Text } from "rayous";
export default class extends Component {
build(){
return new Widget({ children: [ new Text("Hello!") ] });
}
}
Top comments (0)