Client - refactor admin (wip)

This commit is contained in:
Sam
2019-09-18 13:58:20 +02:00
parent caa866c816
commit d4fc69c4d5
11 changed files with 121 additions and 85 deletions

View File

@ -76,3 +76,6 @@ export const getDateWithTZ = (date, tz) => {
new Date()
)
}
export const capitalize = target =>
target.charAt(0).toUpperCase() + target.slice(1)