├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── BrowserHistory └── history.js ├── components ├── Authorization.js ├── layout │ ├── Footer.js │ ├── Header.js │ └── NotFoundPage.js └── pages │ ├── AdminDashboard.js │ ├── Landing.js │ ├── Login.js │ ├── OrgDashboard.js │ ├── SupAdDashboard.js │ └── UserDashboard.js ├── index.css ├── index.js ├── logo.svg └── serviceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/App.js -------------------------------------------------------------------------------- /src/BrowserHistory/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/BrowserHistory/history.js -------------------------------------------------------------------------------- /src/components/Authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/Authorization.js -------------------------------------------------------------------------------- /src/components/layout/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/layout/Footer.js -------------------------------------------------------------------------------- /src/components/layout/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/layout/Header.js -------------------------------------------------------------------------------- /src/components/layout/NotFoundPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/layout/NotFoundPage.js -------------------------------------------------------------------------------- /src/components/pages/AdminDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/pages/AdminDashboard.js -------------------------------------------------------------------------------- /src/components/pages/Landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/pages/Landing.js -------------------------------------------------------------------------------- /src/components/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/pages/Login.js -------------------------------------------------------------------------------- /src/components/pages/OrgDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/pages/OrgDashboard.js -------------------------------------------------------------------------------- /src/components/pages/SupAdDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/pages/SupAdDashboard.js -------------------------------------------------------------------------------- /src/components/pages/UserDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/components/pages/UserDashboard.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NemerSahli/React-Role-Based-Access-Control/HEAD/src/serviceWorker.js --------------------------------------------------------------------------------