18 lines
433 B
TypeScript
18 lines
433 B
TypeScript
import Footer from "../components/Footer";
|
|
import LayoutOptions from "../components/searchPage/LayoutOptions";
|
|
import SidebarFilters from "../components/searchPage/SidebarFilters";
|
|
|
|
const Search = () => {
|
|
return (
|
|
<div className="overflow-scroll h-screen w-screen pt-14">
|
|
<div className="flex">
|
|
<SidebarFilters />
|
|
<LayoutOptions />
|
|
</div>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Search;
|