aboutsummaryrefslogtreecommitdiff
path: root/src/services/component_utils/component_utils.js
blob: 77ea14a10c5e66216e8f2627f3eed005b8994496 (plain)
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
}