import React from 'react'; import { productString } from '../../strings/product.strings'; import SortedTh from './SortedTh'; interface TableHeadProps { reverseSortDirection: boolean sortBy: string | null setSorting: (title: string) => void } const ProductsTableHead = ({ reverseSortDirection, sortBy, setSorting }: TableHeadProps) => { return ( ); }; export default ProductsTableHead;