mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 09:34:29 +08:00
14 lines
337 B
JavaScript
14 lines
337 B
JavaScript
import React from 'react';
|
|
import SearchView, {SearchSettingsView} from '../view/Search'
|
|
|
|
|
|
const SearchController = props => {
|
|
const onSearchQuery = params => {
|
|
console.log('on search: ' + params);
|
|
};
|
|
|
|
return <SearchView onSearchQuery={onSearchQuery} />
|
|
};
|
|
|
|
export {SearchController, SearchView, SearchSettingsView};
|