import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-wizard-base', templateUrl: './wizard-base.component.html', styleUrls: ['./wizard-base.component.css'] }) export class WizardBaseComponent implements OnInit { constructor() { } ngOnInit() { } }