// 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; }