gitextract_bzf8m7j0/ ├── .gitignore ├── .ignore ├── .prettierrc ├── LICENSE.txt ├── README.md ├── esbuild.config.mjs ├── examples/ │ ├── example.py │ └── example.ts ├── package.json ├── public/ │ └── manifest.json ├── scripts/ │ ├── script.ts │ └── tsconfig.json ├── src/ │ ├── client/ │ │ ├── AboutPage.tsx │ │ ├── App.tsx │ │ ├── DemoPage.tsx │ │ ├── Editor.css │ │ ├── Editor.tsx │ │ ├── ExportPage.tsx │ │ ├── ImportPage.tsx │ │ ├── LoginPage.css │ │ ├── LoginPage.tsx │ │ ├── Menu.css │ │ ├── Menu.tsx │ │ ├── NotePage.css │ │ ├── NotePage.tsx │ │ ├── Notes.css │ │ ├── Notes.tsx │ │ ├── NotesPage.css │ │ ├── NotesPage.tsx │ │ ├── Notifications.css │ │ ├── Notifications.tsx │ │ ├── PageLayout.css │ │ ├── PageLayout.tsx │ │ ├── api.ts │ │ ├── appStore.tsx │ │ ├── appStoreActions.tsx │ │ ├── clientToServiceWorkerApi.ts │ │ ├── common.css │ │ ├── cookies.ts │ │ ├── cross-context-broadcast.ts │ │ ├── crypto.ts │ │ ├── custom.d.ts │ │ ├── hooks.tsx │ │ ├── icons.ts │ │ ├── index.tsx │ │ ├── logger.ts │ │ ├── normalize.css │ │ ├── notes/ │ │ │ ├── about.md │ │ │ ├── export.md │ │ │ ├── import.md │ │ │ └── welcome1.md │ │ ├── router.tsx │ │ ├── serviceWorker.ts │ │ ├── serviceWorkerToClientApi.ts │ │ ├── storage.ts │ │ ├── style.css │ │ └── sync.ts │ ├── common/ │ │ ├── mdFns.ts │ │ ├── types.ts │ │ └── util.ts │ └── server/ │ ├── db.ts │ ├── index.ts │ └── validateEnvVars.ts └── tsconfig.json