UNPKG

@freewillpbc/create-react-component-folder

Version:
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;