├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── now.json ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── logo.js ├── logo.svg └── serviceWorker.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !public 3 | !src 4 | !package.json 5 | !yarn.lock 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/README.md -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/src/logo.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-lazy-memo/HEAD/yarn.lock --------------------------------------------------------------------------------