mirror of
https://github.com/brian8544/turtle-wow.git
synced 2025-01-03 21:34:35 +00:00
14 lines
192 B
PHP
14 lines
192 B
PHP
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use Livewire\Component;
|
|
|
|
class LoaderComponent extends Component
|
|
{
|
|
public function render()
|
|
{
|
|
return view('livewire.loader-component');
|
|
}
|
|
}
|