delete component class (for now)

This commit is contained in:
spencerrlongg 2023-11-08 16:12:01 -06:00
parent 7f4b2d6e42
commit 0c4901487d

View file

@ -1,26 +0,0 @@
<?php
namespace App\View\Components;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class personal-access-tokens extends Component
{
/**
* Create a new component instance.
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.personal-access-tokens');
}
}