1 2 3 4 5 6 7 8 9 10
import isFunction from 'lodash/isFunction' const getComponentOptions = (Component) => (isFunction(Component)) ? Component.options : Component const getComponentProps = (Component) => getComponentOptions(Component).props export { getComponentOptions, getComponentProps }