in src/components/TypeSearch.tsx [132:139]
export default connect((state: reducers.IState) => ({
recent: state.recent.recent
}), (dispatch) => ({
onSelected: (fullName: string) => {
dispatch(routerActions.push('/' + fullName.substr(1)))
dispatch(actions.nav.selectType({ type: fullName }))
}
}))(TypeSearch)