Add html select to showcase

This commit is contained in:
hfcRed
2025-12-26 14:50:57 +01:00
parent 10c41f31d2
commit 9239a72374

View File

@@ -384,6 +384,17 @@ function SelectSection() {
)}
</SendouSelect>
</ComponentRow>
<ComponentRow label="HTML Select">
<select>
<option value="">Select...</option>
{SELECT_ITEMS.map((item) => (
<option key={item.id} value={item.id}>
{item.name}
</option>
))}
</select>
</ComponentRow>
</div>
</Section>
);