11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'odds-crawler-commons-material',
|
|
templateUrl: './material.component.html',
|
|
styleUrls: ['./material.component.scss']
|
|
})
|
|
export class CommonMaterialComponent {
|
|
title = 'odds-crawler-frontend-commons-material';
|
|
}
|