output$plot <-renderPlot({
mtcars %>%
mjs_plot(x=mpg, y=cyl) %>%
mjs_line() %>%
mjs_add_marker(18.7, "Something Wonderful") %>%
mjs_add_baseline(6, "Something Awful")
})
This syntax cannot display the output of plot enter image description here
what's the solution?