inst/shiny/ga4-example/segment_ga4_helper/app.R

library(shiny)
library(googleAnalyticsR)

ui <- shinyUI(fluidPage(
   
  segmentBuilderUI("test1")

))


server <- shinyServer(function(input, output, session) {
   
  callModule(segmentBuilder, "test1")
  
})

# Run the application 
shinyApp(ui = ui, server = server)
MarkEdmondson1234/googleAnalyticsR_public documentation built on Dec. 10, 2023, 2:43 a.m.