mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 20:49:28 +00:00
14 lines
204 B
PHP
14 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Livewire\SharedVariables;
|
|
|
|
use Livewire\Component;
|
|
|
|
class Index extends Component
|
|
{
|
|
public function render()
|
|
{
|
|
return view('livewire.shared-variables.index');
|
|
}
|
|
}
|