We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<Button>
map
VStack
HStack
Map only - OK:
<VStack left={50} top={20} width={20} height={5}> {items.map((item) => ( <Button key={item.id}> {item.name} </Button> ))} </VStack>
Button + map - error:
<VStack left={50} top={20} width={20} height={5}> <Button>Caption</Button> {items.map((item) => ( <Button key={item.id}> {item.name} </Button> ))} </VStack>
The text was updated successfully, but these errors were encountered:
mkapal
No branches or pull requests
Map only - OK:
Button + map - error:
The text was updated successfully, but these errors were encountered: