File: D:/HostingSpaces/SBogers95/rentman.io/app/Komma/Dynamic/ComponentArea/ComponentAreaInterface.php
<?php
namespace App\Komma\Dynamic\ComponentArea;
use App\Komma\Kms\Core\Attributes\Attribute;
use App\Komma\Kms\Core\Attributes\Models\Traits\HasSubFoldersInterface;
use Illuminate\View\View;
/**
* Interface ComponentAreaInterface
* @mixin Attribute
*/
interface ComponentAreaInterface extends HasSubFoldersInterface
{
/**
* Returns a view that visually represents this attribute
*/
public function render(): View;
}