├── .gitignore ├── LICENSE ├── README.md ├── _antigo-exemplo ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ ├── gis--map-route.svg │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── Navbar.css │ │ └── Navbar.jsx │ ├── contexts │ │ └── GlobalContext.jsx │ ├── index.css │ ├── main.jsx │ ├── pages │ │ ├── Contato.jsx │ │ ├── Final.jsx │ │ ├── Generica.jsx │ │ └── Home.jsx │ └── router │ │ └── routes.jsx └── vite.config.js ├── eslint.config.js ├── index.html ├── package.json ├── public ├── gis--map-route.svg └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── Navbar.css │ └── Navbar.jsx ├── contexts │ └── GlobalContext.jsx ├── index.css ├── main.jsx ├── pages │ ├── Home.jsx │ ├── Pagina1.jsx │ ├── Pagina2.jsx │ └── Pagina3.jsx └── router │ └── routes.jsx └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/README.md -------------------------------------------------------------------------------- /_antigo-exemplo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/.gitignore -------------------------------------------------------------------------------- /_antigo-exemplo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/LICENSE -------------------------------------------------------------------------------- /_antigo-exemplo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/README.md -------------------------------------------------------------------------------- /_antigo-exemplo/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/eslint.config.js -------------------------------------------------------------------------------- /_antigo-exemplo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/index.html -------------------------------------------------------------------------------- /_antigo-exemplo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/package-lock.json -------------------------------------------------------------------------------- /_antigo-exemplo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/package.json -------------------------------------------------------------------------------- /_antigo-exemplo/public/gis--map-route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/public/gis--map-route.svg -------------------------------------------------------------------------------- /_antigo-exemplo/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/public/vite.svg -------------------------------------------------------------------------------- /_antigo-exemplo/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/App.css -------------------------------------------------------------------------------- /_antigo-exemplo/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/App.jsx -------------------------------------------------------------------------------- /_antigo-exemplo/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/assets/react.svg -------------------------------------------------------------------------------- /_antigo-exemplo/src/components/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/components/Navbar.css -------------------------------------------------------------------------------- /_antigo-exemplo/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/components/Navbar.jsx -------------------------------------------------------------------------------- /_antigo-exemplo/src/contexts/GlobalContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/contexts/GlobalContext.jsx -------------------------------------------------------------------------------- /_antigo-exemplo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/index.css -------------------------------------------------------------------------------- /_antigo-exemplo/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/main.jsx -------------------------------------------------------------------------------- /_antigo-exemplo/src/pages/Contato.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/pages/Contato.jsx -------------------------------------------------------------------------------- /_antigo-exemplo/src/pages/Final.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/pages/Final.jsx -------------------------------------------------------------------------------- /_antigo-exemplo/src/pages/Generica.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/pages/Generica.jsx -------------------------------------------------------------------------------- /_antigo-exemplo/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/pages/Home.jsx -------------------------------------------------------------------------------- /_antigo-exemplo/src/router/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/src/router/routes.jsx -------------------------------------------------------------------------------- /_antigo-exemplo/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/_antigo-exemplo/vite.config.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/package.json -------------------------------------------------------------------------------- /public/gis--map-route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/public/gis--map-route.svg -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/components/Navbar.css -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/contexts/GlobalContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/contexts/GlobalContext.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Pagina1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/pages/Pagina1.jsx -------------------------------------------------------------------------------- /src/pages/Pagina2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/pages/Pagina2.jsx -------------------------------------------------------------------------------- /src/pages/Pagina3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/pages/Pagina3.jsx -------------------------------------------------------------------------------- /src/router/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/src/router/routes.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaellindemann/templateReactRouterContext/HEAD/vite.config.js --------------------------------------------------------------------------------