src/app/booking-confirm/booking-confirm.component.ts
| encapsulation | ViewEncapsulation.None |
| selector | app-booking-confirm |
| styleUrls | booking-confirm.component.scss |
| templateUrl | ./booking-confirm.component.html |
Methods |
constructor()
|
| ngOnInit |
ngOnInit()
|
|
Returns :
void
|
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'app-booking-confirm',
templateUrl: './booking-confirm.component.html',
styleUrls: ['./booking-confirm.component.scss'],
encapsulation: ViewEncapsulation.None
})
export class BookingConfirmComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
<div class="container confirm-page">
<div>
<h1>Congrats</h1>
<p>
Your booking has been made.we will get in touch with you shortly
</p>
</div>
</div>
<!-- <div [fxLayout]="'row'" fxLayoutAlign="center center">
<div [fxLayout]="'column'" fxLayoutAlign="center center">
<div>one</div>
<div>two</div>
<div>three</div>
</div>
</div> -->