| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace Atk4\Ui; |
| 6: | |
| 7: | /** |
| 8: | * Implements Hello World. Add this view anywhere! |
| 9: | */ |
| 10: | class HelloWorld extends View |
| 11: | { |
| 12: | #[\Override] |
| 13: | protected function init(): void |
| 14: | { |
| 15: | parent::init(); |
| 16: | |
| 17: | $this->set('Hello World'); |
| 18: | } |
| 19: | } |
| 20: |