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
349 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # uuid: 5fa22440-fa5b-4f3e-98d5-9abe8c68fd5b
  3. # contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
  4. # name: reactClassCompoment
  5. # key: rcc
  6. # --
  7. import React, { Component } from 'react'
  8. export default class ${1:${TM_FILENAME_BASE}} extends Component {
  9. render() {
  10. return (
  11. <div>
  12. $0
  13. </div>
  14. )
  15. }
  16. }