Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rajistics
/
shiny-test
like
1
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
d6dfb0c
shiny-test
/
app.R
rajistics
more
27e0aed
about 2 years ago
raw
Copy download link
history
blame
Safe
151 Bytes
library
(
shiny
)
ui
<-
fluidPage
(
titlePanel
(
"Example Shiny Application"
)
)
server
<-
function
(
input
,
output
)
{
}
shinyApp
(
ui
=
ui
,
server
=
server
)