Ifeanyi commited on
Commit
26c5466
·
verified ·
1 Parent(s): 26d359a

Update app.R

Browse files
Files changed (1) hide show
  1. app.R +2 -1
app.R CHANGED
@@ -13,7 +13,7 @@ ui <- fluidPage(
13
  title = "Data Explorer",
14
  theme = shinytheme("cyborg"),
15
  tags$h3(id = "title", tags$strong("Graphic-Walker Data Explorer"),style = "text-align:center;color:lightblue;"),
16
- tags$a(href = "https://github.com/Ifeanyi55", tags$strong("Maintainer"),target = "_blank",style = "text-decoration:none;color:lightblue;margin-left:1250px;margin-bottom:1000px"),
17
  sidebarLayout(
18
  sidebarPanel(width = 3,style = "border-width:5px;border-color:lightblue;", fileInput("target_upload",h5(strong("Click to Upload CSV File"),style = "color:lightblue;"),
19
  accept = c("text/csv"),
@@ -45,5 +45,6 @@ server <- function(input,output,session){
45
  })
46
  }
47
 
 
48
  shinyApp(ui,server)
49
 
 
13
  title = "Data Explorer",
14
  theme = shinytheme("cyborg"),
15
  tags$h3(id = "title", tags$strong("Graphic-Walker Data Explorer"),style = "text-align:center;color:lightblue;"),
16
+ tags$a(href = "https://github.com/Ifeanyi55", tags$strong("Maintainer"),target = "_blank",style = "text-decoration:none;color:lightblue;margin-left:1230px;"),
17
  sidebarLayout(
18
  sidebarPanel(width = 3,style = "border-width:5px;border-color:lightblue;", fileInput("target_upload",h5(strong("Click to Upload CSV File"),style = "color:lightblue;"),
19
  accept = c("text/csv"),
 
45
  })
46
  }
47
 
48
+ # run app
49
  shinyApp(ui,server)
50