emacs/snippets/rjsx-mode/React/hoc

18 lines
393 B
Plaintext

# -*- 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
}