23 lines
892 B
TypeScript
23 lines
892 B
TypeScript
import React, { useEffect, useState } from "react";
|
|
import { Tabs, TabsList, TabsTrigger } from "@/components/ui/tabs";
|
|
import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from "@/components/ui/carousel";
|
|
import { useParams, usePathname, useRouter } from "next/navigation";
|
|
import { Icon } from "@iconify/react/dist/iconify.js";
|
|
import { formatDateToIndonesian } from "@/utils/globals";
|
|
import { getListContent } from "@/service/landing/landing";
|
|
import { Link } from "@/i18n/routing";
|
|
import { Reveal } from "./Reveal";
|
|
|
|
const PopularPolda = () => {
|
|
const [newContent, setNewContent] = useState<any>();
|
|
const [selectedTab, setSelectedTab] = useState("video");
|
|
const router = useRouter();
|
|
const pathname = usePathname();
|
|
const params = useParams();
|
|
const locale = params?.locale;
|
|
|
|
return <div>popular-polda</div>;
|
|
};
|
|
|
|
export default PopularPolda;
|