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