18 lines
365 B
R
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')
|
|
)
|
|
)
|