aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/utils.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils.tsx b/src/utils.tsx
new file mode 100644
index 0000000..9a2d8b4
--- /dev/null
+++ b/src/utils.tsx
@@ -0,0 +1 @@
+export const capitalize = (str: string) => str.charAt(0).toUpperCase() + str.slice(1);