UNPKG

@freewillpbc/create-react-component-folder

Version:
15 lines (12 loc) 267 B
import React, { Component } from 'react'; import { View, Text } from 'react-native'; class NormalNativeComp extends Component { render() { return ( <View> <Text>NormalNativeComp</Text> </View> ); } } export default NormalNativeComp;