├── .gitignore ├── README.md ├── package.json ├── public ├── images │ └── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png ├── index.html └── manifest.json ├── src ├── App.js ├── App.test.js ├── actions │ └── index.jsx ├── assets │ ├── font │ │ ├── fontello.eot │ │ ├── fontello.svg │ │ ├── fontello.ttf │ │ ├── fontello.woff │ │ └── fontello.woff2 │ ├── login-bg.svg │ ├── login-form.svg │ ├── login-icons.svg │ ├── login-person.svg │ ├── login-screen1.svg │ ├── login-screen2.svg │ ├── login-screen3.svg │ └── logo.svg ├── components │ ├── Admin │ │ ├── admin.scss │ │ └── index.jsx │ ├── Categories │ │ ├── AddCategory.jsx │ │ ├── Category.jsx │ │ ├── SubCategory.jsx │ │ ├── add.scss │ │ ├── categories.scss │ │ ├── index.jsx │ │ └── subcategory.scss │ ├── Customers │ │ ├── customers.scss │ │ └── index.jsx │ ├── Dashboard │ │ ├── Bank.jsx │ │ ├── dashboard.scss │ │ └── index.jsx │ ├── Header │ │ ├── header.scss │ │ └── index.jsx │ ├── Home │ │ ├── home.scss │ │ └── index.jsx │ ├── Loading │ │ ├── index.jsx │ │ └── loading.scss │ ├── Login │ │ ├── index.jsx │ │ └── login.scss │ ├── Navbar │ │ ├── index.jsx │ │ └── navbar.scss │ ├── Orders │ │ ├── New.jsx │ │ ├── Order.jsx │ │ ├── Process.jsx │ │ ├── Shipping.jsx │ │ ├── Success.jsx │ │ ├── index.jsx │ │ ├── new.scss │ │ └── orders.scss │ ├── Product │ │ ├── AddProduct.jsx │ │ ├── Update.jsx │ │ ├── addproduct.scss │ │ ├── index.jsx │ │ ├── product.scss │ │ └── update.scss │ └── Products │ │ ├── Product.jsx │ │ ├── index.jsx │ │ └── products.scss ├── config.js ├── index.css ├── index.js ├── reducers │ ├── categories.jsx │ ├── index.jsx │ └── user.jsx ├── serviceWorker.js └── types.js └── static.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/package.json -------------------------------------------------------------------------------- /public/images/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/images/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/images/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/images/icons/icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/images/icons/icon-152x152.png -------------------------------------------------------------------------------- /public/images/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/images/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/images/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/images/icons/icon-384x384.png -------------------------------------------------------------------------------- /public/images/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/images/icons/icon-512x512.png -------------------------------------------------------------------------------- /public/images/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/images/icons/icon-72x72.png -------------------------------------------------------------------------------- /public/images/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/images/icons/icon-96x96.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/actions/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/actions/index.jsx -------------------------------------------------------------------------------- /src/assets/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/font/fontello.eot -------------------------------------------------------------------------------- /src/assets/font/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/font/fontello.svg -------------------------------------------------------------------------------- /src/assets/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/font/fontello.ttf -------------------------------------------------------------------------------- /src/assets/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/font/fontello.woff -------------------------------------------------------------------------------- /src/assets/font/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/font/fontello.woff2 -------------------------------------------------------------------------------- /src/assets/login-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/login-bg.svg -------------------------------------------------------------------------------- /src/assets/login-form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/login-form.svg -------------------------------------------------------------------------------- /src/assets/login-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/login-icons.svg -------------------------------------------------------------------------------- /src/assets/login-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/login-person.svg -------------------------------------------------------------------------------- /src/assets/login-screen1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/login-screen1.svg -------------------------------------------------------------------------------- /src/assets/login-screen2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/login-screen2.svg -------------------------------------------------------------------------------- /src/assets/login-screen3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/login-screen3.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/Admin/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Admin/admin.scss -------------------------------------------------------------------------------- /src/components/Admin/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Admin/index.jsx -------------------------------------------------------------------------------- /src/components/Categories/AddCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Categories/AddCategory.jsx -------------------------------------------------------------------------------- /src/components/Categories/Category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Categories/Category.jsx -------------------------------------------------------------------------------- /src/components/Categories/SubCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Categories/SubCategory.jsx -------------------------------------------------------------------------------- /src/components/Categories/add.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Categories/add.scss -------------------------------------------------------------------------------- /src/components/Categories/categories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Categories/categories.scss -------------------------------------------------------------------------------- /src/components/Categories/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Categories/index.jsx -------------------------------------------------------------------------------- /src/components/Categories/subcategory.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Categories/subcategory.scss -------------------------------------------------------------------------------- /src/components/Customers/customers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Customers/customers.scss -------------------------------------------------------------------------------- /src/components/Customers/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Customers/index.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Bank.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Dashboard/Bank.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Dashboard/dashboard.scss -------------------------------------------------------------------------------- /src/components/Dashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Dashboard/index.jsx -------------------------------------------------------------------------------- /src/components/Header/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Header/header.scss -------------------------------------------------------------------------------- /src/components/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Header/index.jsx -------------------------------------------------------------------------------- /src/components/Home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Home/home.scss -------------------------------------------------------------------------------- /src/components/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Home/index.jsx -------------------------------------------------------------------------------- /src/components/Loading/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Loading/index.jsx -------------------------------------------------------------------------------- /src/components/Loading/loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Loading/loading.scss -------------------------------------------------------------------------------- /src/components/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Login/index.jsx -------------------------------------------------------------------------------- /src/components/Login/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Login/login.scss -------------------------------------------------------------------------------- /src/components/Navbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Navbar/index.jsx -------------------------------------------------------------------------------- /src/components/Navbar/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Navbar/navbar.scss -------------------------------------------------------------------------------- /src/components/Orders/New.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Orders/New.jsx -------------------------------------------------------------------------------- /src/components/Orders/Order.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Orders/Order.jsx -------------------------------------------------------------------------------- /src/components/Orders/Process.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Orders/Process.jsx -------------------------------------------------------------------------------- /src/components/Orders/Shipping.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Orders/Shipping.jsx -------------------------------------------------------------------------------- /src/components/Orders/Success.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Orders/Success.jsx -------------------------------------------------------------------------------- /src/components/Orders/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Orders/index.jsx -------------------------------------------------------------------------------- /src/components/Orders/new.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Orders/new.scss -------------------------------------------------------------------------------- /src/components/Orders/orders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Orders/orders.scss -------------------------------------------------------------------------------- /src/components/Product/AddProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Product/AddProduct.jsx -------------------------------------------------------------------------------- /src/components/Product/Update.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Product/Update.jsx -------------------------------------------------------------------------------- /src/components/Product/addproduct.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Product/addproduct.scss -------------------------------------------------------------------------------- /src/components/Product/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Product/index.jsx -------------------------------------------------------------------------------- /src/components/Product/product.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Product/product.scss -------------------------------------------------------------------------------- /src/components/Product/update.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Product/update.scss -------------------------------------------------------------------------------- /src/components/Products/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Products/Product.jsx -------------------------------------------------------------------------------- /src/components/Products/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Products/index.jsx -------------------------------------------------------------------------------- /src/components/Products/products.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/components/Products/products.scss -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/config.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/reducers/categories.jsx -------------------------------------------------------------------------------- /src/reducers/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/reducers/index.jsx -------------------------------------------------------------------------------- /src/reducers/user.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/reducers/user.jsx -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/src/types.js -------------------------------------------------------------------------------- /static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswara/Admin-eCommerce-ReactJS/HEAD/static.json --------------------------------------------------------------------------------