├── .gitignore ├── Dockerfile ├── README.md ├── favicon.ico ├── index.html ├── package.json ├── server ├── app.js └── index.js ├── src ├── components │ ├── About │ │ ├── index.js │ │ └── style.css │ ├── App │ │ ├── index.js │ │ ├── logo.svg │ │ └── style.css │ └── NotFound │ │ ├── index.js │ │ └── style.css ├── index.css ├── index.js └── routes.js └── test └── server.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/package.json -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/server/app.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/server/index.js -------------------------------------------------------------------------------- /src/components/About/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/src/components/About/index.js -------------------------------------------------------------------------------- /src/components/About/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/src/components/App/index.js -------------------------------------------------------------------------------- /src/components/App/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/src/components/App/logo.svg -------------------------------------------------------------------------------- /src/components/App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/src/components/App/style.css -------------------------------------------------------------------------------- /src/components/NotFound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/src/components/NotFound/index.js -------------------------------------------------------------------------------- /src/components/NotFound/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/src/routes.js -------------------------------------------------------------------------------- /test/server.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopezjurip/routed-react/HEAD/test/server.test.js --------------------------------------------------------------------------------