17 lines
535 B
TypeScript
17 lines
535 B
TypeScript
import { getRecommendationAnimeAction } from "../../actions/getRecommenationAnime";
|
|
import AnimeRecommendationCard from "./components/Card";
|
|
|
|
const RecommendationMain = async () => {
|
|
const data = async () => await getRecommendationAnimeAction();
|
|
const result = await data();
|
|
return (
|
|
<div className="flex gap-2 w-full overflow-x-scroll py-2 my-2 hide-scrollbar">
|
|
{result.map((item, index) => (
|
|
<AnimeRecommendationCard data={item} key={index} />
|
|
))}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default RecommendationMain;
|