├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico └── robots.txt ├── src ├── App.css ├── App.js ├── client.js ├── components │ ├── HttpStatus.js │ ├── NotFound.js │ └── withSSR.js ├── index.js ├── routes.js ├── screens │ ├── About.js │ ├── Home.js │ ├── UserDetail.js │ └── Users.js └── server.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | 3 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/App.js -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/client.js -------------------------------------------------------------------------------- /src/components/HttpStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/components/HttpStatus.js -------------------------------------------------------------------------------- /src/components/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/components/NotFound.js -------------------------------------------------------------------------------- /src/components/withSSR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/components/withSSR.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/index.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/screens/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/screens/About.js -------------------------------------------------------------------------------- /src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/screens/Home.js -------------------------------------------------------------------------------- /src/screens/UserDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/screens/UserDetail.js -------------------------------------------------------------------------------- /src/screens/Users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/screens/Users.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/src/server.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-router-nextjs-like-data-fetching/HEAD/yarn.lock --------------------------------------------------------------------------------