added project
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<p>deliverer works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-deliverer',
|
||||
imports: [],
|
||||
templateUrl: './deliverer.html',
|
||||
styleUrl: './deliverer.css',
|
||||
})
|
||||
export class Deliverer {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>delivery-note works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-delivery-note',
|
||||
imports: [],
|
||||
templateUrl: './delivery-note.html',
|
||||
styleUrl: './delivery-note.css',
|
||||
})
|
||||
export class DeliveryNote {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>purchase-order works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-purchase-order',
|
||||
imports: [],
|
||||
templateUrl: './purchase-order.html',
|
||||
styleUrl: './purchase-order.css',
|
||||
})
|
||||
export class PurchaseOrder {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>quotation works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-quotation',
|
||||
imports: [],
|
||||
templateUrl: './quotation.html',
|
||||
styleUrl: './quotation.css',
|
||||
})
|
||||
export class Quotation {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>stock works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-stock',
|
||||
imports: [],
|
||||
templateUrl: './stock.html',
|
||||
styleUrl: './stock.css',
|
||||
})
|
||||
export class Stock {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>supplier works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-supplier',
|
||||
imports: [],
|
||||
templateUrl: './supplier.html',
|
||||
styleUrl: './supplier.css',
|
||||
})
|
||||
export class Supplier {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>user works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-user',
|
||||
imports: [],
|
||||
templateUrl: './user.html',
|
||||
styleUrl: './user.css',
|
||||
})
|
||||
export class User {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>welcome works!</p>
|
||||
@@ -0,0 +1,6 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { Welcome } from './welcome';
|
||||
|
||||
export const WELCOME_ROUTES: Routes = [
|
||||
{ path: '', component: Welcome },
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-welcome',
|
||||
imports: [],
|
||||
templateUrl: './welcome.html',
|
||||
styleUrl: './welcome.css'
|
||||
})
|
||||
export class Welcome {}
|
||||
Reference in New Issue
Block a user