Core welcome tour functionality

This commit is contained in:
Michael Shamoon
2022-09-21 21:44:15 -07:00
parent e7ebc33090
commit 4e56fe339e
16 changed files with 169 additions and 35 deletions

View File

@@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core'
import { TourService } from 'ngx-ui-tour-ng-bootstrap'
@Component({
selector: 'app-welcome-widget',
@@ -6,7 +7,7 @@ import { Component, OnInit } from '@angular/core'
styleUrls: ['./welcome-widget.component.scss'],
})
export class WelcomeWidgetComponent implements OnInit {
constructor() {}
constructor(public readonly tourService: TourService) {}
ngOnInit(): void {}
}