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