File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Every space inside `{ }` and `( )` means that this is pushed into next line :)
34
34
| ` imd→ ` | ` import { destructuredModule } from 'module' ` |
35
35
| ` ime→ ` | ` import * as alias from 'module' ` |
36
36
| ` ima→ ` | ` import { originalName as aliasName} from 'module' ` |
37
+ | ` imsc→ ` | ` import styled from 'styled-components' ` |
37
38
| ` exp→ ` | ` export default moduleName ` |
38
39
| ` exd→ ` | ` export { destructuredModule } from 'module' ` |
39
40
| ` exa→ ` | ` export { originalName as aliasName} from 'module' ` |
Original file line number Diff line number Diff line change 19
19
"prefix" : " ima" ,
20
20
"body" : " import { ${2:originalName} as ${3:alias} } from '${1:module}'$0"
21
21
},
22
+ "importStyled" : {
23
+ "prefix" : " imsc" ,
24
+ "body" : " import styled from 'styled-components';$0"
25
+ },
22
26
"exportDefault" : {
23
27
"prefix" : " exp" ,
24
28
"body" : " export default $1$0"
You can’t perform that action at this time.
0 commit comments