addComponent($label); $button = new Button('Test Button', 'px-4 py-2 bg-blue-600 text-white rounded'); $button->setOnClick(function() use ($label) { $label->setText('Button clicked!'); }); $container->addComponent($button); $window->setRoot($container); $app->addWindow($window); echo "Simple test starting...\n"; $app->run();