import Link from 'next/link' import { ResponsiveImage } from 'components' const Categories = props => { //? Props const { homePage, childCategories, color, name } = props //? Re-Renders if (childCategories.categories.length > 0 && color && name) { return (

{name} {' - '} {childCategories.title}

{childCategories.categories.map((item, index) => (
{item.name}
))}
) } return null } export default Categories