initialize react functional component shortcut vs-code code example
Example: react native class component template keyboard shortcut
import React,{Component} from 'react';
import {View,Text} from 'react-native';
export default class filename extends Component
{
render()
{
return(
<View>
<Text>Welcome to React Native !!!</Text>
</View>
);
}
}