es6 react extension code example
Example 1: arrow function component react shortcut vscode
const mapStateToProps = (state) => ({})
const mapDispatchToProps = {}
Example 2: arrow function component react shortcut vscode
import React, { Component } from 'react'
export default class FileName extends Component {
render() {
return <div>$2</div>
}
}