Responsive Components <3

This commit is contained in:
Belén Curcio
2018-07-11 17:50:21 -03:00
parent 5118d5ae58
commit 43c13c0731
16 changed files with 245 additions and 10 deletions
+5
View File
@@ -0,0 +1,5 @@
import { camelCase } from "lodash";
/** pascalCase */
export default function pascalCase(value: string) {
return value[0].toUpperCase() + camelCase(value).slice(1);
}