generated from espanso/espanso-external-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
typescriptreact.json
91 lines (91 loc) · 1.71 KB
/
typescriptreact.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"Print to console": {
"prefix": "clg",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
},
"Print to error": {
"prefix": "cle",
"body": [
"console.error('$1');",
"$2"
],
"description": "Log output to error"
},
"JSON Stringify HTML": {
"prefix": "jss",
"body": [
"<pre style={{ height: \"200px\", overflow: \"auto\" }}><code>{JSON.stringify($1, null, 2)}</code></pre>"
],
"description": "JSON Stringify HTML"
},
"useEffect": {
"prefix": "uef",
"body": [
"useEffect(() => {",
" $1",
"}, [$2]);"
],
"description": "useEffect"
},
"useCallback": {
"prefix": "ucb",
"body": [
"useCallback(() => {",
" $1",
"}, [$2]);"
],
"description": "useCallback"
},
"useMemo": {
"prefix": "umo",
"body": [
"useMemo(() => {",
" $1",
"}, [$2]);"
],
"description": "useMemo"
},
"useRef": {
"prefix": "ure",
"body": [
"useRef($1);"
],
"description": "useRef"
},
"React FC": {
"prefix": "rfc",
"body": [
"import React from 'react';",
"",
"interface $1Props {",
" $2",
"}",
"",
"const $1: React.FC<$1Props> = ({ $3 }) => {",
" return (",
" $4",
" );",
"};",
"",
"export default $1;"
],
"description": "React FC"
},
"React function component": {
"prefix": "edf",
"body": [
"type Props = {}",
"",
"export default function $1(props: Props): React.ReactElement {",
" return (",
" <>$2</>",
" );",
"}"
],
"description": "React function component"
}
}