EbenFergy / movieApp

Found empty destructuring patterns JS-0058
Anti-pattern
Major
4 occurrences in this check
Unexpected empty object pattern.
 2import context from "../../../store/context"; 
 3import Carousel from "../../Carousel/Carousel"; 
 4 
 5const Trending = ({}) => {  6  const { trendingApiData, trendingIsLoading, trender } = useContext(context); 
 7  //   console.log("...trender", trender); 
 8  trendingApiData && 
Unexpected empty object pattern.
 3import Carousel from "../../Carousel/Carousel"; 
 4import SlickCarousel from "../../../SlickCarousel"; 
 5 
 6const Love = ({}) => {  7  const { loveApiData, loveIsLoading } = useContext(context); 
 8  //   console.log("...trender", trender); 
 9 
Unexpected empty object pattern.
 2import context from "../../../store/context"; 
 3import Carousel from "../../Carousel/Carousel"; 
 4 
 5const Comedy = ({}) => {  6  const { comedyApiData, comedyIsLoading, trender } = useContext(context); 
 7  //   console.log("...trender", trender); 
 8  comedyApiData && console.log("...Trending apiData in Tending", comedyApiData); 
Unexpected empty object pattern.
 2import context from "../../../store/context"; 
 3import Carousel from "../../Carousel/Carousel"; 
 4 
 5const Action = ({}) => {  6  const { actionApiData, actionIsLoading, actioneer } = useContext(context); 
 7  //   console.log("...trender", trender); 
 8