education.component.ts 280 B

1234567891011121314
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-education',
  4. templateUrl: './education.component.html',
  5. styleUrls: ['./education.component.scss'],
  6. })
  7. export class EducationComponent implements OnInit {
  8. constructor() { }
  9. ngOnInit() {}
  10. }