Fix renderComponent
Some checks failed
Lint / lint (push) Failing after 8s

This commit is contained in:
Julien Valverdé
2025-12-29 18:33:38 +01:00
parent 2398118105
commit 7032432e74
2 changed files with 20 additions and 5 deletions

View File

@@ -6,6 +6,6 @@ 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)
Renderer.renderComponent(this, TestUi1Component)
}
}