Skip to content

Instantly share code, notes, and snippets.

View munyari's full-sized avatar

Panashe Fundira munyari

View GitHub Profile
@munyari
munyari / typescript.snippets
Created March 2, 2018 13:29
Some ultisnips snippets for react in typescript
snippet cdm
componentDidMount() {
${0}
}
snippet cdup
componentDidUpdate(${1:prevProps,} ${2:prevState}) {
${0}
}
snippet cwm
componentWillMount() {