Path: blob/main/tests/docs/playwright/serve/shiny-r/tabby-html.qmd
6481 views
---
title: "Title"
format: html
server: shiny
_quarto:
playwright-test: serve/shiny-r/shiny-tabby-html.spec.ts
---
```{r}
#| context: server
output$text1 <- renderText({
"hi, it's tab 1"
})
output$text2 <- renderText({
"hi, it's tab 2"
})
output$text3 <- renderText({
"hi, it's tab 3"
})
```
## Slide
::: {.panel-tabset}
### tab1
```{r}
textOutput("text1")
```
### tab2
```{r}
textOutput("text2")
```
### tab3
```{r}
textOutput("text3")
```
:::