├── .gitignore ├── LICENSE ├── index.html ├── package.json ├── src ├── App.tsx ├── EditNote.tsx ├── NewNote.tsx ├── Note.tsx ├── NoteForm.tsx ├── NoteLayout.tsx ├── NoteList.module.css ├── NoteList.tsx ├── main.tsx ├── useLocalStorage.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/LICENSE -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/EditNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/EditNote.tsx -------------------------------------------------------------------------------- /src/NewNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/NewNote.tsx -------------------------------------------------------------------------------- /src/Note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/Note.tsx -------------------------------------------------------------------------------- /src/NoteForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/NoteForm.tsx -------------------------------------------------------------------------------- /src/NoteLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/NoteLayout.tsx -------------------------------------------------------------------------------- /src/NoteList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/NoteList.module.css -------------------------------------------------------------------------------- /src/NoteList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/NoteList.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/src/useLocalStorage.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/react-note-taking-app/HEAD/vite.config.ts --------------------------------------------------------------------------------