Repository URL to install this package:
Version:
0.9.6 ▾
|
ui-component-library
/
src
/
components
/
molecules
/
SelectDropDown
/
ActiveOption
/
_circularRenderProp.tsx
|
---|
import React from 'react'
import { SelectableState } from 'src/state/SelectionState'
import { ActiveOptionProps } from './typings'
import { ActiveOption } from './ActiveOption'
// @todo typings on state
export function renderActiveItem(props: ActiveOptionProps, state: SelectableState) {
return <ActiveOption {...props} state={state} />
}