Good-looking problems: customise your Shiny disconnected screen and error messages.
Include dependencies with use_sever
then use the sever
function to customise the screen, launch the app and stop the server to see the customised screen.
library(shiny)
library(sever)
ui <- fluidPage(
use_sever(),
h1("sever")
)
server <- function(input, output){
sever()
}
shinyApp(ui, server)
Install it from Github with: