Repository URL to install this package:
|
Version:
2.1.7 ▾
|
import React from 'react'
import { SearchInput } from 'abstractions/forms/views'
import { SearchProps } from './typings'
function defaultRenderSearch(props: SearchProps) {
const { hasTitle } = props
return <SearchInput hasTitle={hasTitle} />
}
export { defaultRenderSearch }