import Link from 'next/link' import { ResponsiveImage, SubCategoriesSkeleton } from 'components' const SubCategories = props => { //? Props const { childCategories, isLoading } = props //? Render(s) return (
{isLoading ? ( ) : childCategories && childCategories.length > 0 ? ( <>

类别

{childCategories.map(item => ( {item.name} ))}
) : null}
) } export default SubCategories