mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-06 18:31:05 +00:00
16 lines
204 B
PHP
16 lines
204 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\View\Components\Forms;
|
||
|
|
||
|
use ViewComponents\Component;
|
||
|
|
||
|
class Input extends Component
|
||
|
{
|
||
|
public function render(): string
|
||
|
{
|
||
|
return '';
|
||
|
}
|
||
|
}
|