Skip to content

Instantly share code, notes, and snippets.

View yurikilian's full-sized avatar

Yuri Kilian yurikilian

View GitHub Profile
@yurikilian
yurikilian / javascript.js
Last active October 28, 2017 13:37
Create React Native Class With Export Default
"React Native Component Class": {
"prefix": "rncc",
"body": [
"import React, { Component } from 'react';",
"import { View, StyleSheet } from 'react-native';\n\n",
"export default class ${1:ClassName} extends Component {",
"\tconstructor(props) {\n\t\tsuper(props);\n\t}",
"\trender() {",
"\t\treturn (",
"\t\t\t<View style={styles.container}>$0</View>",