react-title-case

Convert a string to Title Case


Keywords
yohix, react, react native, title case, converter, node-module, npm, react-native, titlecase
License
MIT
Install
npm install react-title-case@1.0.1

Documentation

React Title Case

Convert a string to Title Case yohix love github → Yohix Love Github

CI Version Downloads Install size

NPM

Try in CodeSandbox

Edit react-camelcase

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