Creates a textarea input that synchronizes across Shiny sessions using Automerge CRDT, without requiring an external sync server.
See also
Other textarea:
textarea_server()
Examples
if (interactive()) {
ui <- shiny::fluidPage(textarea_ui("editor"))
server <- function(input, output, session) textarea_server("editor")
shiny::shinyApp(ui, server)
}