generator-upendodnn
Version:
Scaffolds DNN extensions, including Modules (Webforms, SPA, and MVC), Persona Bar, Skin Object, Library, Scheduler, and Hotcakes Commerce projects (based on the generator built by Matt Rutledge).
12 lines (10 loc) • 318 B
text/typescript
import { Component } from '@angular/core';
@Component({
selector: '<%= namespaceRoot.toLowerCase()%>-<%= friendlyName.toLowerCase() %>',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = '<%= friendlyName %>';
constructor() {}
}