Last active
May 13, 2019 08:18
-
-
Save tomwagner/ad556e667f2d44af518bb2ce65d1429b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const x = ['test', 'test2', 'test3'] | |
| <CmxSelect | |
| id="role" | |
| required | |
| label="Role" | |
| placeholder="Select role2" | |
| onChange={(e: any) => console.log('select, onChange')} | |
| > | |
| {x.map((role, i) => ( | |
| <CmxSelectOption key={`role-${role}`} value={i}> | |
| {role} | |
| </CmxSelectOption> | |
| ))} | |
| </CmxSelect> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment