Example work
Some checks failed
Lint / lint (push) Failing after 9s

This commit is contained in:
Julien Valverdé
2025-12-29 00:04:53 +01:00
parent 945ef34829
commit cfdcae0892
7 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Control } from "godot"
import { Renderer } from "react-godot-renderer"
import { TestUi1Component } from "./TestUi1Component"
export default class TestUi1 extends Control {
// Called when the node enters the scene tree for the first time.
_ready(): void {
Renderer.render(React.createElement(TestUi1Component), this)
}
}