aboutsummaryrefslogtreecommitdiff
path: root/inst/GUI/ui.R
blob: 2b0b8687f8cbb2511b10bdffc36653010c2d642e (plain) (blame)
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