react native class component template keyboard shortcut

JavaScript
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>
  
  );
  }
}
Source

Also in JavaScript: