es7 snippets vs code code example

Example 1: arrow function component react shortcut vscode

import React from 'react'
import { View, Text } from 'react-native'

export default function $1() {
  return (
    
       $2 
    
  )
}

Example 2: arrow function component react shortcut vscode

import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'

export const FileName = () => {
  return 
$4
} FileName.propTypes = { $2: $3, } const mapStateToProps = (state) => ({}) const mapDispatchToProps = {} export default connect(mapStateToProps, mapDispatchToProps)(FileName)

Tags:

Misc Example