Files
HeimerdingerLoL/app/View/Components/Emotes/List_all.php
2023-11-26 19:17:26 +01:00

15 lines
249 B
PHP

<?php
namespace App\View\Components\Emotes;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class List_all extends Component
{
public function render(): View
{
return view('components.emotes.list_all');
}
}