export const transformToUpperCase = (str: string): string => str.charAt(0).toUpperCase() + str.slice(1);