import React from 'react' import { Link } from 'react-router-dom' const CategoryLink = ({ category, children, className, ...props }: { category: string children?: any className?: string }) => ( {children || category} ) export default CategoryLink