From 0b636828b32d0c95b080b0329ad0d94ab2470157 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Wed, 31 Dec 2025 01:35:20 +0100 Subject: [PATCH] Fix --- packages/example/src/TestUi1Component.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/example/src/TestUi1Component.tsx b/packages/example/src/TestUi1Component.tsx index 2dde9bb..ae0c09c 100644 --- a/packages/example/src/TestUi1Component.tsx +++ b/packages/example/src/TestUi1Component.tsx @@ -1,25 +1,25 @@ -import { Control, Label } from "godot" +import * as Godot from "godot" import { Component } from "react-godot-renderer" -const GodotControl = Component.make(Control) -const GodotLabel = Component.make(Label) +const Control = Component.make(Godot.Control) +const Label = Component.make(Godot.Label) export function TestUi1Component() { return ( - - - - + + ) }