12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-get-started',
|
|
templateUrl: './get-started.component.html',
|
|
styleUrls: ['./get-started.component.scss']
|
|
})
|
|
export class GetStartedComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit() {}
|
|
}
|