mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-05 22:15:36 +05:00
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
"use client";
|
|
import { InterestingCarousel } from "#/components/Discovery/InterestingCarousel";
|
|
|
|
export const DiscoverPage = () => {
|
|
return (
|
|
<>
|
|
<InterestingCarousel />
|
|
</>
|
|
);
|
|
};
|