import { FC, useEffect, useState } from "react";
import { Redirect, useParams } from "react-router-dom";
import { getData } from "../../services/api";
import { CategoryPage } from "./components/CategoryPage";
export const Category: FC = () => {
const { strCategory } = useParams();
const [meals, setMeals] = useState({ meals: [] });
useEffect(() => {
const getMeals = () => getData(strCategory, setMeals, "filter");
getMeals();
}, [strCategory]);
return !meals.meals ? (
) : (
);
};