sidebar refactor

This commit is contained in:
2024-03-20 01:57:17 +02:00
parent 1f03eebd08
commit bb77a37ff7
11 changed files with 141 additions and 176 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace Lucent\Schema\Sidebar\View;
class ItemData
{
public function __construct(
public string $label,
public string $href,
public bool $isActive,
public bool $isLink,
)
{
}
}