├── .DS_Store ├── .env ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── plug.vim ├── public ├── _redirects ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── reate-dirs ├── src ├── .DS_Store ├── App.css ├── App.js ├── App.test.js ├── data │ └── data-source │ │ ├── local │ │ └── constants.js │ │ └── remote │ │ ├── apiCall.js │ │ └── apiList.js ├── domain │ ├── initState │ │ ├── feedInitState.js │ │ └── loaderInitState.js │ ├── reducers │ │ ├── feedReducer.js │ │ └── loaderReducer.js │ ├── slices │ │ ├── feedSlice.js │ │ └── loaderSlice.js │ └── stores │ │ └── store.js ├── index.css ├── index.js ├── logo.svg ├── presentation │ ├── .DS_Store │ ├── components │ │ ├── navbar │ │ │ └── navbar.js │ │ ├── styles.css │ │ └── text │ │ │ └── text.js │ ├── pages │ │ ├── .DS_Store │ │ ├── homepage │ │ │ ├── homepage.js │ │ │ └── usePagination.js │ │ ├── logs │ │ │ └── logs.js │ │ ├── profile │ │ │ └── profile.js │ │ ├── signup │ │ │ └── signup.js │ │ ├── success │ │ │ └── success.js │ │ └── verificationSuccess │ │ │ └── verificationSuccess.js │ └── routes │ │ ├── route-paths.js │ │ └── routes.js ├── reportWebVitals.js └── setupTests.js ├── test.js └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/package.json -------------------------------------------------------------------------------- /plug.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/public/robots.txt -------------------------------------------------------------------------------- /reate-dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/reate-dirs -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/data/data-source/local/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/data/data-source/local/constants.js -------------------------------------------------------------------------------- /src/data/data-source/remote/apiCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/data/data-source/remote/apiCall.js -------------------------------------------------------------------------------- /src/data/data-source/remote/apiList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/data/data-source/remote/apiList.js -------------------------------------------------------------------------------- /src/domain/initState/feedInitState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/domain/initState/feedInitState.js -------------------------------------------------------------------------------- /src/domain/initState/loaderInitState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/domain/initState/loaderInitState.js -------------------------------------------------------------------------------- /src/domain/reducers/feedReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/domain/reducers/feedReducer.js -------------------------------------------------------------------------------- /src/domain/reducers/loaderReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/domain/reducers/loaderReducer.js -------------------------------------------------------------------------------- /src/domain/slices/feedSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/domain/slices/feedSlice.js -------------------------------------------------------------------------------- /src/domain/slices/loaderSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/domain/slices/loaderSlice.js -------------------------------------------------------------------------------- /src/domain/stores/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/domain/stores/store.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/presentation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/.DS_Store -------------------------------------------------------------------------------- /src/presentation/components/navbar/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/components/navbar/navbar.js -------------------------------------------------------------------------------- /src/presentation/components/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/components/styles.css -------------------------------------------------------------------------------- /src/presentation/components/text/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/components/text/text.js -------------------------------------------------------------------------------- /src/presentation/pages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/pages/.DS_Store -------------------------------------------------------------------------------- /src/presentation/pages/homepage/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/pages/homepage/homepage.js -------------------------------------------------------------------------------- /src/presentation/pages/homepage/usePagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/pages/homepage/usePagination.js -------------------------------------------------------------------------------- /src/presentation/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/pages/logs/logs.js -------------------------------------------------------------------------------- /src/presentation/pages/profile/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/pages/profile/profile.js -------------------------------------------------------------------------------- /src/presentation/pages/signup/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/pages/signup/signup.js -------------------------------------------------------------------------------- /src/presentation/pages/success/success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/pages/success/success.js -------------------------------------------------------------------------------- /src/presentation/pages/verificationSuccess/verificationSuccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/pages/verificationSuccess/verificationSuccess.js -------------------------------------------------------------------------------- /src/presentation/routes/route-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/routes/route-paths.js -------------------------------------------------------------------------------- /src/presentation/routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/presentation/routes/routes.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memory-stack/Memory-Stack/HEAD/yarn.lock --------------------------------------------------------------------------------