Khemraj Sharma
Khemraj Sharma

Reputation: 58934

Live template for react native in visual studio code

I use live template in Android Studio or IntelliJ with shortcut Ctrl + J which allow me to use live template like try catch block or just type iter or itar for iterating a list. I wish to use same in react native development in Visual Studio Code. Is this possible?

Upvotes: 0

Views: 721

Answers (1)

RANVIR GORAI
RANVIR GORAI

Reputation: 1286

Yes we can get this feather using a snippet plugin link is here React native shippet

This plugin helps you to write code easily, for example, type imrc and press tab

import React, { Component}  from 'react'  //imrc

Upvotes: 1

Related Questions