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

This commit is contained in:
Julien Valverdé
2026-01-02 23:23:45 +01:00
parent ff2d92d743
commit c6683f4905

View File

@@ -1,11 +1,6 @@
import { Control } from "godot"
import { Renderer } from "react-godot-renderer"
import { Class } from "react-godot-renderer"
import { TestUi2Component } from "./TestUi2Component"
export default class TestUi2 extends Control {
// Called when the node enters the scene tree for the first time.
_ready(): void {
Renderer.renderComponent(this, TestUi2Component)
}
}
export default class TestUi2 extends Class.make(Control, TestUi2Component) {}