How to dynamically add the options for a Select component in Forge's UI Kit?

I’m trying to add options programmatically to a select component, but cannot seem to figure out how to do this. I’ve attached my current code below. Hoping someone can help and maybe attach a simple example

@forge/ui is UI Kit 1 and they’re breaking all apps running it now.

Uninstall that and install UI Kit 2 (confusingly now called “UI Kit”): @forge/react

Then you can do: <Select appearance="default" options={projects} />

1 Like

That was exactly what I was doing wrong! Thought it may having something to do with the package or version, but I’m pretty new to developing with Forge and hadn’t gotten all of the way there. Thank you for the help!