The solution works great whith plots, but when I try the same with tables it does not work.
For example that code results in tabsets in the quarto document but without showing the tables
```{r}
library(tidyverse)
library(reactable)
data <- iris %>% as_tibble()
tabs <- data %>%
group_nest(Species) %>%
deframe() %>%
map(., ~ {
reactable(.x)
})
```
# Iris Tables
::: panel-tabset
```{r}
#| results: asis
#| fig-width: 14
#| fig-height: 6
iwalk(tabs, ~ {
cat('## ', .y, '\n\n')
print(.x)
cat('\n\n')
})
```
:::
So my question is:
What can I do to see tables in that quarto tabsets?