Skip to content

Instantly share code, notes, and snippets.

@fewkz
Last active May 1, 2023 13:52
Show Gist options
  • Save fewkz/7e55030bf9c7e17c76e00baf2c0283bb to your computer and use it in GitHub Desktop.
Save fewkz/7e55030bf9c7e17c76e00baf2c0283bb to your computer and use it in GitHub Desktop.
VSCode snippets for froact
{
"Froact Component": {
"scope": "lua,luau",
"prefix": "component_froact",
"body": [
"type $1Props = {}",
"local $1 = froact.c({ name = \"$1\" }, function(props: $1Props, hooks)",
"\t$0",
"end)"
]
},
"Froact Function Component": {
"scope": "lua,luau",
"prefix": "component_function_froact",
"body": [
"local function $1(props: {})",
"\t$0",
"end"
],
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment