I hereby claim:
- I am vestaxis on github.
- I am vestax (https://keybase.io/vestax) on keybase.
- I have a public key ASCFX3GIVCMUxU5J0I_2YxHpLimyqABJNASQh9_ZOx7M6Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| library(shiny) | |
| filtersUI <- function(id) { | |
| ns <- NS(id) | |
| fluidRow( | |
| uiOutput(ns("filters")) | |
| ) | |
| } |
| # Simple example of exporting UI to another function (this works) | |
| library(shiny) | |
| tabUI <- function(id) { | |
| ns <- NS(id) | |
| fluidRow( | |
| textOutput(ns("filter")) | |
| ) | |
| } |