Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
153 Bytes
export const findById = <T extends { id: string }>(idToMatch: string) => {
return (itemToFind: T) => {
return itemToFind.id === idToMatch;
};
};