Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
361 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # uuid: 58802667-d355-45e8-a000-c2e5d9677b97
  3. # contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
  4. # name: reactClassPureComponent
  5. # key: rpc
  6. # --
  7. import React, { PureComponent } from 'react'
  8. export default class ${1:${TM_FILENAME_BASE}} extends PureComponent {
  9. render() {
  10. return (
  11. <div>
  12. $0
  13. </div>
  14. )
  15. }
  16. }