🚧 wip: add recommendation component
This commit is contained in:
13
features/home/sections/Recommendation/main.tsx
Normal file
13
features/home/sections/Recommendation/main.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import { getRecommendationAnimeAction } from "../../actions/getRecommenationAnime";
|
||||
|
||||
const RecommendationMain = async () => {
|
||||
const data = async () => await getRecommendationAnimeAction();
|
||||
const result = await data();
|
||||
return (
|
||||
<div>
|
||||
<div>{JSON.stringify(result)}</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default RecommendationMain;
|
||||
Reference in New Issue
Block a user