-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathbest-search.js
More file actions
39 lines (32 loc) · 827 Bytes
/
best-search.js
File metadata and controls
39 lines (32 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import React from 'react';
import loadable from '@loadable/component';
import ShowcaseLayout from '../../../../../components/SearchShowcaseLayout';
import '../../../../../styles/best-search.css';
const SearchboxShowcase = loadable(() => import('best-search-reactivesearch'));
class Showcase extends React.Component {
state = {
mounted: false,
};
async componentDidMount() {
this.setState({
mounted: true,
});
}
render() {
const { mounted } = this.state;
const { location } = this.props;
return (
<ShowcaseLayout
post={{ title: 'Best Search' }}
sidebar="docs"
nestedSidebar="web-reactivesearch"
location={location}
>
<div className="bootstrap best-search">
{mounted ? <SearchboxShowcase /> : 'Loading'}
</div>
</ShowcaseLayout>
);
}
}
export default Showcase;