import styles from "../search.module.css"; import Link from "next/link"; import Image from "next/image"; import { preFetchAnimeInfo } from "../../videoLinkfetcher"; export default async function fetchedInfo(data) { preFetchAnimeInfo(data); return (
{data ? ( data.results && data.results.length > 0 ? ( data.results.map((item, index) => (

{item.title}

Drama Poster
)) ) : (

No results found

) ) : null}
); }