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