mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
14 lines
205 B
PHP
14 lines
205 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Livewire\Mod;
|
||
|
|
||
|
use Livewire\Component;
|
||
|
|
||
|
class ModerationOptions extends Component
|
||
|
{
|
||
|
public function render()
|
||
|
{
|
||
|
return view('livewire..mod.moderation-options');
|
||
|
}
|
||
|
}
|