Repository URL to install this package:
|
Version:
4.0.76 ▾
|
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 state={state} {...props} />
}