nodram
Version:
A Really MEAN Web Framework
19 lines (11 loc) • 384 B
text/typescript
import {OnInit, Component} from "@angular/core";
import {RConstants} from "../helpers/RConstants";
({
templateUrl: 'index.component.html',
styleUrls: ["../../styles/app/landing/index.css"]
})
export class IndexComponent implements OnInit{
public toolbarType: string = RConstants.TOOLBAR_INDEX_TYPE;
public ngOnInit(): void {
}
}