Init development stack

This commit is contained in:
Jan-Niclas Loosen
2026-02-16 18:37:29 +01:00
commit 7f3fd36186
26 changed files with 7620 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
use Livewire\Component;
new class extends Component
{
public string $content = '';
public function sayHello(): void {
$this->content = 'Hello World by Livewire Wordpress Stack!';
}
};
?>
<div>
<button wire:click="sayHello">
Sage Hallo!
</button>
<p>
{{ $content }}
</p>
</div>