Cashier checkout should now work

This commit is contained in:
Amritanshu
2019-08-19 15:58:02 +05:30
parent 55ec2f8763
commit f9e784b12f
25 changed files with 753 additions and 181 deletions

View File

@ -5,6 +5,10 @@ import {LogoutComponent} from './auth/logout/logout.component';
import {HomeComponent} from './home/home.component';
const routes: Routes = [
{
path: 'checkout',
loadChildren: () => import('./cashier-checkout/cashier-checkout.module').then(mod => mod.CashierCheckoutModule)
},
{
path: 'devices',
loadChildren: () => import('./devices/devices.module').then(mod => mod.DevicesModule)