Created
May 12, 2017 13:23
-
-
Save iRoachie/58ad45d2d766971d5474420ccfeb03b0 to your computer and use it in GitHub Desktop.
Typescript React Native functional component Snippet
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
"React Native Functional Component": { | |
"prefix": "tsf", | |
"body": [ | |
"import React from 'react'", | |
"import {", | |
" View,", | |
" Text,", | |
" StyleSheet,", | |
" ViewStyle,", | |
" TextStyle", | |
"} from 'react-native'", | |
"", | |
"interface $1Props {}", | |
"", | |
"const $1 = (props: $1Props) => {", | |
" return (<View />)", | |
"}", | |
"", | |
"export default $1" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment