export const findById = (idToMatch: string) => { return (itemToFind: T) => { return itemToFind.id === idToMatch; }; };