diff --git a/packages/example/src/TestUi1Component.tsx b/packages/example/src/TestUi1Component.tsx index b92c927..db8a14c 100644 --- a/packages/example/src/TestUi1Component.tsx +++ b/packages/example/src/TestUi1Component.tsx @@ -3,7 +3,7 @@ import { useState } from "react" import { Component } from "react-godot-renderer" -const HFlowContainer = Component.make(Godot.HFlowContainer) +const VFlowContainer = Component.make(Godot.VFlowContainer) const Label = Component.make(Godot.Label) const TextEdit = Component.make(Godot.TextEdit) const Button = Component.make(Godot.Button) @@ -23,7 +23,7 @@ export function TestUi1Component() { return ( - - + ) }