develop an app with two tabs and sidebar, card in each tab. in first tab add provision to import excel file and provide dplyr functions as buttons to manipulate data, the card should show the transformed data. use bslib, and rtables packages
Drop files here
or click to upload
library(shiny)
library(bslib)
library(readxl)
library(dplyr)
source("ui.R")
source("server.R")
shinyApp(ui = ui, server = server)
Hi! I can help you with any questions about Shiny and R. What would you like to know?