Reactjs – how can i send query string through react to the backend
import React, { useEffect, useState } from "react"; import { Form, Row, Col, Button } from "react-bootstrap"; import { useParams, useNavigate } from "react-router-dom"; const FilterComponent = ({ categories, brands }) => { const { keyword} = useParams(); const [category,…