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.
 
 
 
 
 
 

18 lines
332 B

# -*- mode: snippet -*-
# uuid: 7c78fcf4-0cc0-4590-9abe-a9fc7b2a24e2
# contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
# name: reactArrowFunctionComponent
# key: rafc
# --
import React from 'react'
const ${1:${TM_FILENAME_BASE}} = () => {
return (
<div>
$0
</div>
)
}
export default ${1:${TM_FILENAME_BASE}}