├── .gitignore ├── README.md ├── package.json ├── public ├── index.html └── robots.txt ├── src ├── App.css ├── App.js ├── Data │ └── Data.js ├── components │ ├── Card │ │ ├── Card.css │ │ └── Card.jsx │ ├── Cards │ │ ├── Cards.css │ │ └── Cards.jsx │ ├── CustomerReview │ │ ├── CustomerReview.css │ │ └── CustomerReview.jsx │ ├── MainDash │ │ ├── MainDash.css │ │ └── MainDash.jsx │ ├── RigtSide │ │ ├── RightSide.css │ │ └── RightSide.jsx │ ├── Sidebar.css │ ├── Sidebar.jsx │ ├── Table │ │ ├── Table.css │ │ └── Table.jsx │ └── Updates │ │ ├── Updates.css │ │ └── Updates.jsx ├── imgs │ ├── img1.png │ ├── img2.png │ ├── img3.png │ ├── logo.png │ └── profile.png └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/Data/Data.js -------------------------------------------------------------------------------- /src/components/Card/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Card/Card.css -------------------------------------------------------------------------------- /src/components/Card/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Card/Card.jsx -------------------------------------------------------------------------------- /src/components/Cards/Cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Cards/Cards.css -------------------------------------------------------------------------------- /src/components/Cards/Cards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Cards/Cards.jsx -------------------------------------------------------------------------------- /src/components/CustomerReview/CustomerReview.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/CustomerReview/CustomerReview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/CustomerReview/CustomerReview.jsx -------------------------------------------------------------------------------- /src/components/MainDash/MainDash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/MainDash/MainDash.css -------------------------------------------------------------------------------- /src/components/MainDash/MainDash.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/MainDash/MainDash.jsx -------------------------------------------------------------------------------- /src/components/RigtSide/RightSide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/RigtSide/RightSide.css -------------------------------------------------------------------------------- /src/components/RigtSide/RightSide.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/RigtSide/RightSide.jsx -------------------------------------------------------------------------------- /src/components/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Sidebar.css -------------------------------------------------------------------------------- /src/components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/Table/Table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Table/Table.css -------------------------------------------------------------------------------- /src/components/Table/Table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Table/Table.jsx -------------------------------------------------------------------------------- /src/components/Updates/Updates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Updates/Updates.css -------------------------------------------------------------------------------- /src/components/Updates/Updates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/components/Updates/Updates.jsx -------------------------------------------------------------------------------- /src/imgs/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/imgs/img1.png -------------------------------------------------------------------------------- /src/imgs/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/imgs/img2.png -------------------------------------------------------------------------------- /src/imgs/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/imgs/img3.png -------------------------------------------------------------------------------- /src/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/imgs/logo.png -------------------------------------------------------------------------------- /src/imgs/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/imgs/profile.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/React-Admin-Dashboard-public/HEAD/yarn.lock --------------------------------------------------------------------------------