Files
ledgerr/ui.R
2016-04-14 17:08:05 -05:00

18 lines
365 B
R

#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
library(shiny)
# Define UI for application that draws a histogram
shinyUI(basicPage(
h2('Journal'),
dataTableOutput('mytable')
)
)