blob: ea2a2e42a84f3a8ea95cf40caa1de511604b40cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
import React from 'react';
import {WithFuzzySearchFilter} from '../search/search';
import './index.scss';
const App: React.FC = () => {
return <div className="search-content">
<WithFuzzySearchFilter/>
</div>
}
export default App
|