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.
 
 
 
 
 
 

23 lines
422 B

# -*- mode: snippet -*-
# uuid: f24b6de3-135e-4da0-81d9-0f479f3b11dd
# contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
# name: reactFunctionalComponentWithPropTypes
# key: rfcp
# --
import React from 'react'
import PropTypes from 'prop-types'
function ${1:${TM_FILENAME_BASE}}(props) {
return (
<div>
$0
</div>
)
}
${1:${TM_FILENAME_BASE}}.propTypes = {
}
export default ${1:${TM_FILENAME_BASE}}