import React from 'react'; import { Provider } from 'react-redux'; import type configureStore from './stores'; import QueryBar from './components/query-bar'; type QueryBarPluginProps = { store: ReturnType; } & React.ComponentProps; const QueryBarPlugin: React.FunctionComponent = ({ store, ...props }) => { return ( ); }; export default QueryBarPlugin; export { QueryBarPlugin as Plugin };