Files
IRTH/src/pages/Search.tsx
T
2024-05-17 18:29:41 +05:00

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;