Reputation: 21
I am trying to capitalize only 1st letter.
for Example: FIRST NAME
converted to First name
Using below code :
1. textTransform: 'capitalize', // Result is First Name
2. I tried to use import startCase from 'lodash.startcase';
and used startCase('FIRST NAME') // Result is First Name
Please let me know if there is any way to implement this
Upvotes: 2
Views: 131