├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public └── favicon.webp ├── src ├── components │ ├── App │ │ ├── App.css │ │ └── App.tsx │ └── CodeEditor │ │ ├── CodeEditor.css │ │ └── CodeEditor.tsx ├── hooks │ └── useLocalStorage.ts ├── index.css ├── main.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/public/favicon.webp -------------------------------------------------------------------------------- /src/components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/src/components/App/App.css -------------------------------------------------------------------------------- /src/components/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/src/components/App/App.tsx -------------------------------------------------------------------------------- /src/components/CodeEditor/CodeEditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/src/components/CodeEditor/CodeEditor.css -------------------------------------------------------------------------------- /src/components/CodeEditor/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/src/components/CodeEditor/CodeEditor.tsx -------------------------------------------------------------------------------- /src/hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/src/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirayatech/NinjaPen/HEAD/vite.config.ts --------------------------------------------------------------------------------