DEV Community

Cover image for Rayous
Makano
Makano

Posted on

Rayous

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!") ] });
    }
}
Enter fullscreen mode Exit fullscreen mode

Home · Docs

Top comments (0)