Update app.R
Browse files
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:
|
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 |
|