import Link from 'next/link' import { useGlobal } from '@/lib/global' const CategoryList = ({ currentCategory, categoryOptions }) => { const { locale } = useGlobal() if (!categoryOptions) { return <> } return ( ) } export default CategoryList