1.0.1 • Published 4 years ago

react-title-case v1.0.1

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

React Title Case

Convert a string to Title Case yohix love githubYohix 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