mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 12:33:06 +00:00
14 lines
201 B
PHP
14 lines
201 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Source\Gitlab;
|
|
|
|
use Livewire\Component;
|
|
|
|
class Change extends Component
|
|
{
|
|
public function render()
|
|
{
|
|
return view('livewire.source.gitlab.change');
|
|
}
|
|
}
|