mirror of
https://github.com/Radiquum/AniX.git
synced 2025-05-04 11:59:40 +05:00
frontend: add load more button on index page. add title trimming for long release titles.
This commit is contained in:
parent
37d4b181f5
commit
2615c47f0c
4 changed files with 74 additions and 24 deletions
14
frontend/app/components/CardList/CardList.jsx
Normal file
14
frontend/app/components/CardList/CardList.jsx
Normal file
|
@ -0,0 +1,14 @@
|
|||
import { ReleaseCard } from "@/app/components/ReleaseCard/ReleaseCard";
|
||||
|
||||
export const CardList = (props) => {
|
||||
return props.data.map((item) => {
|
||||
return (
|
||||
<ReleaseCard key={item.id}
|
||||
id={item.id}
|
||||
title={item.title_ru}
|
||||
poster={item.image}
|
||||
description={item.description}
|
||||
/>
|
||||
);
|
||||
});
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue