It seems that loading {dashHtmlComponents} is a requirement for a dash app to work, and that namespacing it doesn't work. The below app works: ``` library(dash) library(dashHtmlComponents) app <- Dash$new() app$layout(htmlDiv("test")) app$run_server() ``` But the following doesn't render and results in javascript errors: ``` library(dash) app <- Dash$new() app$layout(dashHtmlComponents::htmlDiv("test")) app$run_server() ```