Skip to content

Instantly share code, notes, and snippets.

@jcheng5
Last active January 22, 2019 14:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcheng5/c09a2449c0a94c8f498c4a68a416bc3b to your computer and use it in GitHub Desktop.
Save jcheng5/c09a2449c0a94c8f498c4a68a416bc3b to your computer and use it in GitHub Desktop.
RStudio snippet for Shiny module
snippet shinymod
${1:name}UI <- function(id) {
ns <- NS(id)
tagList(
${0}
)
}
${1:name} <- function(input, output, session) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment