UNPKG

reactizzen

Version:

Creates single react component folder structure with multiple flags, upgraded version of not maintained anymore create-react-folder-component library.

18 lines (14 loc) 349 B
import React, { Component } from 'react'; import { View, Text } from 'react-native'; import PropTypes from 'prop-types'; class NativeCompWithProps extends Component { render() { return ( <View> <Text>NativeCompWithProps</Text> </View> ); } } NativeCompWithProps.propTypes = {}; export default NativeCompWithProps;