├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.png └── index.html └── src ├── App.css ├── App.js ├── Components ├── Details │ ├── Details.css │ └── Details.jsx ├── Editor │ ├── Editor.css │ ├── Editor.jsx │ └── assets │ │ └── star.png ├── Navbar │ ├── Navbar.css │ └── Navbar.jsx └── Options │ ├── Options.css │ ├── Options.jsx │ └── assets │ ├── headset.png │ ├── headset_on.png │ ├── star.png │ ├── trash.png │ └── volume.png ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Editr Statistics
16 |{words}
20 |Words
22 |{special}
27 |Special Characters
29 |{characters}
34 |Characters
36 |Microphone Input Status
42 | {(() => { 43 | if (!browserSupportsSpeechRecognition) { 44 | return ( 45 |
46 | This browser doesn't support
47 | Speech Recognition !.
48 |
Are you sure?
57 |You want to delete this Text?
58 |