classname-converter
is a CLI tool for class to className converter for jsx.
$ npm install -g classname-converter
This will help you when you migrate to React from another library.
$ classname-converter index.tsx
or
$ classname-converter ./folder
before:
<div class="app">App</div>
after
<div className="app">App</div>
MIT License.© hiro08gh