Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
term-container.component.ts 301 B
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-term-container',
  templateUrl: './term-container.component.html',
  styleUrls: ['./term-container.component.scss']
})
export class TermContainerComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}