Last active
January 22, 2019 14:09
-
-
Save jcheng5/c09a2449c0a94c8f498c4a68a416bc3b to your computer and use it in GitHub Desktop.
RStudio snippet for Shiny module
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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