feat: legend

This commit is contained in:
2023-07-03 22:14:17 -03:00
parent 6f5a0ec34a
commit da3e6cb101
5 changed files with 70 additions and 35 deletions

View File

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