import * as React from 'react'; import { defaultRender } from 'piral-core'; import { SearchContainerProps, SearchInputProps, SearchResultProps } from './types'; export const DefaultContainer: React.FC = (props) => defaultRender(props.children); export const DefaultResult: React.FC = (props) => defaultRender(props.children); export const DefaultInput: React.FC = (props) => ( props.setValue(e.target.value)} value={props.value} /> );