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

4 years ago
  1. # -*- mode: snippet -*-
  2. # uuid: 65be124a-71d0-4fd9-975a-08d6ec6f9c58
  3. # contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
  4. # name: reactArrowFunctionExportComponent
  5. # key: rafce
  6. # --
  7. import React from 'react'
  8. const ${1:${TM_FILENAME_BASE}} = () => {
  9. return (
  10. <div>
  11. $0
  12. </div>
  13. )
  14. }
  15. export default ${1:${TM_FILENAME_BASE}}