1234567891011121314 |
- import { Component, OnInit } from '@angular/core';
- @Component({
- selector: 'app-education',
- templateUrl: './education.component.html',
- styleUrls: ['./education.component.scss'],
- })
- export class EducationComponent implements OnInit {
- constructor() { }
- ngOnInit() {}
- }
|