0
3
KKKhalid Khan
React Native Pure component
Library: react-native
Shortcut: reactnative.component.pure
import { Text, View } from 'react-native'
import React, { PureComponent } from 'react'
export default class filename.ext extends PureComponent {
render() {
return (
<View>
<Text>filename.ext</Text>
</View>
)
}
}