Skip to content
New issue

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

Multi-file layout doesn't work with R #45

Open
royfrancis opened this issue Mar 24, 2024 · 0 comments
Open

Multi-file layout doesn't work with R #45

royfrancis opened this issue Mar 24, 2024 · 0 comments

Comments

@royfrancis
Copy link

Just trying out the multifile layout of the editor.

```{shinylive-r}
#| standalone: true
#| components: [editor, viewer]

## file: ui.r
ui <- fluidPage(
  sliderInput("value", label="Value", min=1, max=50, step=1, value=2),
  textOutput("out")
)

## file: server.r
server <- function(input, output, session) {
  output$out <- renderText(paste0("Squared: ",input$value^2))
}

#shinyApp(ui=ui,server=server)
```

The editor seems to be working, but the app doesn't show up.

Screenshot 2024-03-24 at 12 45 03

quarto 1.4.549
quarto-shinylive 0.1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant