gate props and fixed the pins not beenig set to false bug

This commit is contained in:
Matei Adriel 2019-07-29 22:51:17 +03:00
parent f06fe88df5
commit 285248435a
33 changed files with 739 additions and 341 deletions

15
.vscode/template.code-snippets vendored Normal file
View file

@ -0,0 +1,15 @@
{
"Gate template": {
"prefix": "template",
"body": [
"import { PartialTemplate } from '../types/PartialTemplate'",
"",
"/**",
" * The template of the ${1:and} gate",
" */",
"const ${1}Template: PartialTemplate = ${2:[]}",
"",
"export default ${1}Template"
]
}
}