import React from 'react'; import { SessionIconButton, SessionIconSize, SessionIconType } from './icon'; interface Props { searchString: string; onChange: any; } export class SessionConversationSearch extends React.Component { public constructor(props: Props) { super(props); } public render() { const { searchString } = this.props; return (
this.props.onChange(e.target.value)} placeholder={window.i18n('searchForAKeyPhrase')} />
); } }