wilomgfx
1/26/2017 - 9:42 PM

This is my base file template for a react-native component

This is my base file template for a react-native component

//Created by ${USER} on ${DATE}.
import React, { Component } from 'react'
import PropTypes from 'proptypes';
import {
  View,
  StyleSheet
}from 'react-native'

export default class ${NAME} extends Component {
    constructor(props) {
        super(props);
    }
    render() {
        return (
            <View>

            </View>
        );
    }
}


const styles = StyleSheet.create({
  container : {
    flex:1,
    alignSelf:'stretch',
    marginTop:20,
    alignItems:'center',
  }
});