feat: component base

This commit is contained in:
Corentin Thomasset 2021-02-13 19:55:45 +01:00
parent 02dafd6a2f
commit 6e0c369398
No known key found for this signature in database
GPG key ID: DBD997E935996158
17 changed files with 1482 additions and 1006 deletions

5
utils/string.ts Normal file
View file

@ -0,0 +1,5 @@
function capitalise(s: string) {
return s.charAt(0).toUpperCase() + s.slice(1)
}
export {capitalise}