mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-05 08:52:00 +00:00

- replace some helper components and forms with class components in the ui - create viewcomponents service and load the component function to be used in views
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 '';
|
|
}
|
|
}
|