├── .gitignore ├── README.md ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── App.test.js ├── actions │ ├── authAction.js │ └── types.js ├── components │ └── Navbar.js ├── index.js ├── logo.svg ├── pages │ ├── Blog.js │ ├── Dashboard.js │ ├── Home.js │ ├── Login.js │ └── Register.js ├── reducers │ ├── authReducer.js │ └── index.js ├── serviceWorker.js ├── store.js ├── styles │ ├── index.css │ └── tailwind.css └── utils │ └── Api.js ├── tailwind.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/actions/authAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/actions/authAction.js -------------------------------------------------------------------------------- /src/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/actions/types.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/Blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/pages/Blog.js -------------------------------------------------------------------------------- /src/pages/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/pages/Dashboard.js -------------------------------------------------------------------------------- /src/pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/pages/Home.js -------------------------------------------------------------------------------- /src/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/pages/Login.js -------------------------------------------------------------------------------- /src/pages/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/pages/Register.js -------------------------------------------------------------------------------- /src/reducers/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/reducers/authReducer.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/store.js -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /src/utils/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/src/utils/Api.js -------------------------------------------------------------------------------- /tailwind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/tailwind.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/React-app/HEAD/yarn.lock --------------------------------------------------------------------------------