I am using R/shinydasboard to create a web app that I am putting behind a login screen.
I\'m having trouble with getting the main body to render based on the sidebar men
You need to set the tabItem as active:
tabItem
tabItem(tabName = "t_item1", class = "active", box(title = "Item 1 information"))
It will render the first tab when you dynamically render the content after login.