1 2 3 4 5 6 7 8 9 10 11 12 13 14
library(shiny) shinyUI(pageWithSidebar( headerPanel("shiny GUI for mkin"), sidebarPanel( textInput("test", "Test:", "test input") ), mainPanel( textOutput("test") ) )) # vim: set ts=2 sw=2 foldmethod=marker expandtab:
Contact - Imprint