move componentrenderer

This commit is contained in:
Philipp Kühn
2020-04-25 22:40:38 +02:00
parent 3cca79b960
commit 30d53d33a5
11 changed files with 45 additions and 19 deletions

View File

@@ -0,0 +1,3 @@
export default function capitalize(value: string = ''): string {
return value.charAt(0).toUpperCase() + value.slice(1)
}