react-title-case
v1.0.1
Published
Convert a string to Title Case
Downloads
56
Maintainers
Readme
React Title Case
Convert a string to Title Case
yohix love github
→Yohix Love Github
Try in CodeSandbox
Install
$ npm install react-title-case
Usage
import TitleCase from 'react-title-case';
const App = () => (
<div>
<TitleCase string={'yohix love github'} />
</div>
);
// => 'Yohix Love Github'
API
string={input}
Type: string
<TitleCase string={'yohix love github'} />
// => 'Yohix Love Github'
Modules used
- title-case - Transform a string into title case following English rules.
License
MIT © Yohix