mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
16 lines
234 B
PHP
16 lines
234 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Frontend;
|
|
|
|
use Livewire\Component;
|
|
|
|
class SearchTabs extends Component
|
|
{
|
|
public string $country;
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.frontend.search-tabs');
|
|
}
|
|
}
|