Files
HeimerdingerLoL/app/View/Components/About/Faq/Dropdown.php
dependabot[bot] 8199a5d6f3 Dusting
2024-07-01 03:22:52 +00:00

20 lines
361 B
PHP

<?php
namespace App\View\Components\About\Faq;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Dropdown extends Component
{
public function __construct(
public string $question,
public string $answer
) {}
public function render(): View
{
return view('components.about.faq.dropdown');
}
}