Created
September 19, 2019 18:03
-
-
Save cpsievert/9767a7379eada3f072100507467bba98 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
--- | |
title: "Subapp test" | |
output: html_document | |
runtime: shiny | |
--- | |
Check your JS console for errors | |
```{r} | |
library(shiny) | |
library(leaflet) | |
shinyApp( | |
ui = leaflet() %>% addTiles(), | |
server = function(input, output, session) {} | |
) | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment