docs: move TODO.md to README

This commit is contained in:
Sawyer Andrews 2025-08-17 14:27:18 -05:00
parent 56fd9467f7
commit a90a877aed
Signed by: sawyer
GPG key ID: D4B437630877389B
3 changed files with 8 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# word-counter
A simple svelte word counter
A simple word counter written in Svelte.
![Screenshot](/static/screenshot.png)
@ -28,3 +28,9 @@ pnpm run build
```
You can preview the production build with `pnpm run preview`.
## Todo
- [ ] Time to read
- [ ] Time to speak
- [ ] Word frequency

View file

@ -1,3 +0,0 @@
- Time to read
- Time to speak
- Word frequency

View file

@ -25,7 +25,7 @@
if (browser) {
const savedText = localStorage.getItem('text');
if (savedText !== null) {
text = savedText; // Ensure reactivity
text = savedText;
}
}
});