mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-25 04:13:17 +00:00
21 lines
286 B
PHP
21 lines
286 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Meetups;
|
|
|
|
use Livewire\Component;
|
|
|
|
final class Worldmap extends Component
|
|
{
|
|
public array $markers = [];
|
|
|
|
public function mount(): void
|
|
{
|
|
$this->markers = [];
|
|
}
|
|
|
|
public function filterByMarker($id): void
|
|
{
|
|
//
|
|
}
|
|
}
|