mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 07:19:03 +02: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
15 lines
204 B
PHP
15 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 '';
|
|
}
|
|
}
|