Recherche dans la page de morceau

This commit is contained in:
Victor Turgeon 2022-10-30 12:43:11 -07:00
parent 28b2843aff
commit fb21950e7a

View File

@ -1,10 +1,10 @@
import { Button } from 'react-bootstrap';
import { useEffect } from "react";
import ItemList from "../components/ItemList";
import { useState } from 'react';
import Sorting from "../components/Sorting"
import Filters from '../components/Filters';
import { useLocation } from 'react-router-dom';
import ResearchBar from "../components/ResearchBar";
const Morceaux = () => {
@ -21,6 +21,7 @@ const Morceaux = () => {
useEffect(() => {
document.title = 'Morceaux';
setIsLoading(true);
setIsSearch(false);
async function fetchData(isSearch) {
@ -45,7 +46,7 @@ const Morceaux = () => {
}
setIsLoading(false);
}, []);
}, [state]);
const handleNextItems = async () => {
@ -107,6 +108,7 @@ const Morceaux = () => {
return (
<div className="morceaux" >
<ResearchBar />
<div className="morceaux-options-container">
<div className='filters-container'>
<Filters onChange={handleFilters} />