2020-09-26 22:46:26 +07:00
|
|
|
import { Component } from '@angular/core';
|
2020-02-16 22:15:07 +07:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-start',
|
|
|
|
templateUrl: './start.component.html',
|
2020-08-02 16:00:08 +07:00
|
|
|
styleUrls: ['./start.component.scss'],
|
2020-02-16 22:15:07 +07:00
|
|
|
})
|
2020-09-26 22:46:26 +07:00
|
|
|
export class StartComponent {
|
|
|
|
constructor() { }
|
2020-02-16 22:15:07 +07:00
|
|
|
}
|