Answers for "how to only capitalize first letter of each word in react"

0

react capitalize first letter

// I think the best way is to do it using styles (it will work for any UI framework)
// JS
<Text class="capitalize-me">sometext</Text>
// CSS
.capitalize-me::first-letter {
  text-transform: capitalize;
}
Posted by: Guest on September-03-2021

Code answers related to "how to only capitalize first letter of each word in react"

Browse Popular Code Answers by Language