├── .eslintrc.cjs ├── .gitignore ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── components │ ├── MainNavigation.module.css │ ├── MainNavigation.tsx │ ├── SideDrawer.module.css │ └── SideDrawer.tsx ├── index.css ├── main.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/MainNavigation.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/src/components/MainNavigation.module.css -------------------------------------------------------------------------------- /src/components/MainNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/src/components/MainNavigation.tsx -------------------------------------------------------------------------------- /src/components/SideDrawer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/src/components/SideDrawer.module.css -------------------------------------------------------------------------------- /src/components/SideDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/src/components/SideDrawer.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-portals/HEAD/vite.config.ts --------------------------------------------------------------------------------