I have a table that I am building using reactable in R, and want to add a title with the same font I am using in the table itself. I figured out how to add a title, but how do I change the font?
library(htmlwidgets)
library(reactable)
reactable(head(iris, 10),
style = list(fontFamily = 'Menlo',
fontSize = '14px'),
highlight = TRUE) %>%
htmlwidgets::prependContent(htmltools::tags$h1("This is my Title"))