feat: start on emote components...

This commit is contained in:
Rico van Zelst
2023-11-26 19:17:26 +01:00
parent ce203e7f45
commit de9deadd97
4 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?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');
}
}