mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-11 05:36:10 -05:00
Add html select to showcase
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user