Scribbler310's picture
feat: enhance dashboard
c2b7eb3 verified
export function capitalize(str: string) {
return str.replace(str[0], str[0].toUpperCase())
}