├── .eslintrc ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── PlanetPage.js ├── _dan-jsconf-source │ ├── App.js │ ├── MoviePage.js │ ├── api │ │ └── data.js │ └── future │ │ └── index.js ├── index.css ├── index.js ├── logo.svg └── registerServiceWorker.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["react-app"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/PlanetPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/PlanetPage.js -------------------------------------------------------------------------------- /src/_dan-jsconf-source/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/_dan-jsconf-source/App.js -------------------------------------------------------------------------------- /src/_dan-jsconf-source/MoviePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/_dan-jsconf-source/MoviePage.js -------------------------------------------------------------------------------- /src/_dan-jsconf-source/api/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/_dan-jsconf-source/api/data.js -------------------------------------------------------------------------------- /src/_dan-jsconf-source/future/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | noFuture: true, 3 | }; -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/react-suspense-demo/HEAD/yarn.lock --------------------------------------------------------------------------------