├── .eslintrc.json ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo.png └── manifest.json └── src ├── App.jsx ├── components ├── index │ └── HomePageAction.jsx ├── layout │ ├── NavMenu.jsx │ ├── NotFoundMessage.jsx │ ├── PageAction.jsx │ └── ThemeToggler.jsx └── notes │ ├── AddNewPageAction.jsx │ ├── NoteItem.jsx │ ├── NoteListEmpty.jsx │ ├── NotesIdEditPageAction.jsx │ ├── NotesIdPageAction.jsx │ ├── NotesList.jsx │ └── note-item │ ├── NoteItemBody.jsx │ ├── NoteItemTimestamp.jsx │ └── NoteItemTitle.jsx ├── index.jsx ├── pages ├── archives.jsx ├── index.jsx ├── not-found.jsx └── notes │ ├── _id-edit.jsx │ ├── _id.jsx │ ├── index.jsx │ └── new.jsx ├── styles └── style.css └── utils ├── index.js └── local-data.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/index/HomePageAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/index/HomePageAction.jsx -------------------------------------------------------------------------------- /src/components/layout/NavMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/layout/NavMenu.jsx -------------------------------------------------------------------------------- /src/components/layout/NotFoundMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/layout/NotFoundMessage.jsx -------------------------------------------------------------------------------- /src/components/layout/PageAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/layout/PageAction.jsx -------------------------------------------------------------------------------- /src/components/layout/ThemeToggler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/layout/ThemeToggler.jsx -------------------------------------------------------------------------------- /src/components/notes/AddNewPageAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/notes/AddNewPageAction.jsx -------------------------------------------------------------------------------- /src/components/notes/NoteItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/notes/NoteItem.jsx -------------------------------------------------------------------------------- /src/components/notes/NoteListEmpty.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/notes/NoteListEmpty.jsx -------------------------------------------------------------------------------- /src/components/notes/NotesIdEditPageAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/notes/NotesIdEditPageAction.jsx -------------------------------------------------------------------------------- /src/components/notes/NotesIdPageAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/notes/NotesIdPageAction.jsx -------------------------------------------------------------------------------- /src/components/notes/NotesList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/notes/NotesList.jsx -------------------------------------------------------------------------------- /src/components/notes/note-item/NoteItemBody.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/notes/note-item/NoteItemBody.jsx -------------------------------------------------------------------------------- /src/components/notes/note-item/NoteItemTimestamp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/notes/note-item/NoteItemTimestamp.jsx -------------------------------------------------------------------------------- /src/components/notes/note-item/NoteItemTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/components/notes/note-item/NoteItemTitle.jsx -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/pages/archives.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/pages/archives.jsx -------------------------------------------------------------------------------- /src/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/pages/index.jsx -------------------------------------------------------------------------------- /src/pages/not-found.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/pages/not-found.jsx -------------------------------------------------------------------------------- /src/pages/notes/_id-edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/pages/notes/_id-edit.jsx -------------------------------------------------------------------------------- /src/pages/notes/_id.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/pages/notes/_id.jsx -------------------------------------------------------------------------------- /src/pages/notes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/pages/notes/index.jsx -------------------------------------------------------------------------------- /src/pages/notes/new.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/pages/notes/new.jsx -------------------------------------------------------------------------------- /src/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/styles/style.css -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/local-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-notes-app-2/HEAD/src/utils/local-data.js --------------------------------------------------------------------------------