0
2
KKKhalid Khan
React Native Stateless component
Library: react-native
Shortcut: reactnative.component.stateless
import React from 'react';
import { Text, View } from 'react-native';
const componentName = ({
params,
}) => (
<View>
<Text>componentName</Text>
</View>
);
export default componentName;