Done #1
No reviewers
Labels
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: rishav_dml/Assignment05-Movie-Search#1
Loading…
Reference in a new issue
No description provided.
Delete branch "dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -6,2 +6,4 @@
const [loading, setLoading] = useState(false)
const [error, setError] = useState({})
useEffect(() => {
// console.log("Inside fetch")
Remove comment
@ -12,3 +19,1 @@
const response = useFetch(url + "s=" + searchValue);
console.log(response)
useEffect(() => setData(response), [data]);
console.log(page);
Remove console
@ -2,2 +2,4 @@
import useFetch from "../hooks/useFetch";
import { Pagination } from "@mui/material";
import { ClipLoader } from "react-spinners";
Try to implement spinner loader from scratch- Mayank Review
Complete the changes.