mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
25 lines
503 B
TypeScript
25 lines
503 B
TypeScript
import Link from "next/link";
|
|
import { PosterWithStuff } from "../ReleasePoster/PosterWithStuff";
|
|
|
|
export const ReleaseLink = (props: {
|
|
image: string;
|
|
title_ru: string;
|
|
title_original: string;
|
|
genres?: string;
|
|
grade?: number;
|
|
id: number;
|
|
settings?: {
|
|
showGenres?: boolean;
|
|
};
|
|
profile_list_status?: number;
|
|
status?: {
|
|
name: string;
|
|
};
|
|
status_id?: number;
|
|
}) => {
|
|
return (
|
|
<Link href={`/release/${props.id}`}>
|
|
<PosterWithStuff {...props} />
|
|
</Link>
|
|
);
|
|
};
|