vim-react-snippets Available snippets Trigger Content rcc→ class component skeleton rccl→ legacy component skeleton rec→ only component skeleton cdm→ componentDidMount() {…} cdup→ componentDidUpdate(prevProps, prevState) {…} cwm→ componentWillMount() {…} cwr→ componentWillReceiveProps(nextProps) {…} cwun→ componentWillUnmount() {…} cwup→ componentWillUpdate(nextProps, nextState) {…} scu→ shouldComponentUpdate(nextProps, nextState) {…} fdn→ ReactDOM.findDOMNode(…) sst→ this.setState(…) props→ this.props state→ this.state pt→ static propTypes {…}