Repository URL to install this package:
|
Version:
2.1.1-perf.19 ▾
|
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} />
}