├── .gitignore ├── README.md ├── Untitled-1.html ├── Untitled-1.txt ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── AddDish.js │ ├── AddItem.js │ ├── Dashboard.js │ ├── Newpurse.js │ ├── Nonpaidorder.js │ ├── Sidebar.js │ ├── addEmployee.js │ ├── allEmployee.js │ ├── css │ │ ├── AddDish.css │ │ ├── Additem.css │ │ ├── Dashboard.css │ │ ├── Sidebar.css │ │ ├── addemployee.css │ │ ├── allEmployee.css │ │ ├── bootstrap.min.css │ │ ├── login_register.css │ │ ├── newOrder.css │ │ ├── newpurse.css │ │ ├── styles.css │ │ ├── supplierstyle.css │ │ └── table-style.css │ ├── img │ │ ├── avatar.svg │ │ ├── ladyfinger.jpg │ │ ├── mobile.svg │ │ └── wave.png │ ├── inlineForm.js │ ├── kitchen.js │ ├── login.js │ ├── newOrder.js │ ├── register.js │ ├── supplier-form.js │ ├── suppliertable.js │ └── table.js ├── index.css ├── index.js ├── logo.svg └── setupTests.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/README.md -------------------------------------------------------------------------------- /Untitled-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/Untitled-1.html -------------------------------------------------------------------------------- /Untitled-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/Untitled-1.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/AddDish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/AddDish.js -------------------------------------------------------------------------------- /src/components/AddItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/AddItem.js -------------------------------------------------------------------------------- /src/components/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/Dashboard.js -------------------------------------------------------------------------------- /src/components/Newpurse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/Newpurse.js -------------------------------------------------------------------------------- /src/components/Nonpaidorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/Nonpaidorder.js -------------------------------------------------------------------------------- /src/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/Sidebar.js -------------------------------------------------------------------------------- /src/components/addEmployee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/addEmployee.js -------------------------------------------------------------------------------- /src/components/allEmployee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/allEmployee.js -------------------------------------------------------------------------------- /src/components/css/AddDish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/AddDish.css -------------------------------------------------------------------------------- /src/components/css/Additem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/Additem.css -------------------------------------------------------------------------------- /src/components/css/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/Dashboard.css -------------------------------------------------------------------------------- /src/components/css/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/Sidebar.css -------------------------------------------------------------------------------- /src/components/css/addemployee.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/addemployee.css -------------------------------------------------------------------------------- /src/components/css/allEmployee.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/allEmployee.css -------------------------------------------------------------------------------- /src/components/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/components/css/login_register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/login_register.css -------------------------------------------------------------------------------- /src/components/css/newOrder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/newOrder.css -------------------------------------------------------------------------------- /src/components/css/newpurse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/newpurse.css -------------------------------------------------------------------------------- /src/components/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/styles.css -------------------------------------------------------------------------------- /src/components/css/supplierstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/supplierstyle.css -------------------------------------------------------------------------------- /src/components/css/table-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/css/table-style.css -------------------------------------------------------------------------------- /src/components/img/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/img/avatar.svg -------------------------------------------------------------------------------- /src/components/img/ladyfinger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/img/ladyfinger.jpg -------------------------------------------------------------------------------- /src/components/img/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/img/mobile.svg -------------------------------------------------------------------------------- /src/components/img/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/img/wave.png -------------------------------------------------------------------------------- /src/components/inlineForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/inlineForm.js -------------------------------------------------------------------------------- /src/components/kitchen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/kitchen.js -------------------------------------------------------------------------------- /src/components/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/login.js -------------------------------------------------------------------------------- /src/components/newOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/newOrder.js -------------------------------------------------------------------------------- /src/components/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/register.js -------------------------------------------------------------------------------- /src/components/supplier-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/supplier-form.js -------------------------------------------------------------------------------- /src/components/suppliertable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/suppliertable.js -------------------------------------------------------------------------------- /src/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/components/table.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Safiullah-97/Safiullah-97-Resturant-Management-System-Reactjs/HEAD/yarn.lock --------------------------------------------------------------------------------