Removing unused View component

This commit is contained in:
Brian 2022-06-29 13:45:24 -06:00
parent aff524675c
commit 9577395516
Signed by: brian
GPG Key ID: DE1A5390A3B84CD8

View File

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