Klimi's new dotfiles with stow.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

18 行
393 B

# -*- mode: snippet -*-
# uuid: 0fccd0f9-2e0c-46e3-88e4-699b6adb680e
# contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
# name: hocComponent
# key: hoc
# --
import React from 'react'
import PropTypes from 'prop-types'
export default (WrappedComponent) => {
const hocComponent = ({ ...props }) => <WrappedComponent {...props} />
hocComponent.propTypes = {
}
return hocComponent
}