change all ngml to html
This commit is contained in:
Родитель
a4e8188dcc
Коммит
6699aa3778
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -3,7 +3,7 @@ import {Component} from '@angular/core';
|
|||
@Component({
|
||||
selector: 'about',
|
||||
styleUrls: ['./about.component.css'],
|
||||
templateUrl: './about.component.ngml'
|
||||
templateUrl: './about.component.html'
|
||||
})
|
||||
export class AboutComponent {
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ export class InlineComponent {
|
|||
|
||||
@Component({
|
||||
selector: 'app',
|
||||
templateUrl: './app.component.ngml',
|
||||
template: './app.component.html'
|
||||
})
|
||||
export class AppComponent {
|
||||
prop1 = 'hello';
|
||||
|
|
|
@ -4,7 +4,7 @@ import CustomValidators from '../forms/CustomValidators';
|
|||
|
||||
@Component({
|
||||
selector: 'app-contact',
|
||||
templateUrl: './contact.component.ngml',
|
||||
templateUrl: './contact.component.html',
|
||||
styleUrls: ['./contact-component.css']
|
||||
})
|
||||
export class ContactComponent implements OnInit {
|
||||
|
|
|
@ -4,7 +4,7 @@ import { GithubService } from '../shared/github.service';
|
|||
|
||||
@Component({
|
||||
selector: 'repo-browser',
|
||||
templateUrl: './repo-browser.component.ngml',
|
||||
templateUrl: './repo-browser.component.html',
|
||||
styleUrls: ['./repo-browser.component.css']
|
||||
})
|
||||
export class RepoBrowserComponent {
|
||||
|
|
|
@ -5,7 +5,7 @@ import {GithubService} from '../shared/github.service';
|
|||
@Component({
|
||||
selector: 'repo-detail',
|
||||
styleUrls: ['./repo-detail.component.css'],
|
||||
templateUrl: './repo-detail.component.ngml'
|
||||
templateUrl: './repo-detail.component.html'
|
||||
})
|
||||
export class RepoDetailComponent implements OnInit {
|
||||
private org:string;
|
||||
|
|
|
@ -6,7 +6,7 @@ import {ActivatedRoute} from '@angular/router';
|
|||
@Component({
|
||||
selector: 'repo-list',
|
||||
styleUrls: ['./repo-list.component.css'],
|
||||
templateUrl: './repo-list.component.ngml',
|
||||
templateUrl: './repo-list.component.html',
|
||||
})
|
||||
export class RepoListComponent implements OnInit {
|
||||
org: string;
|
||||
|
|
|
@ -3,7 +3,7 @@ import {Component} from '@angular/core';
|
|||
@Component({
|
||||
selector: 'home',
|
||||
styleUrls: ['./home.component.css'],
|
||||
templateUrl: './home.component.ngml'
|
||||
templateUrl: './home.component.html'
|
||||
})
|
||||
export class HomeComponent {
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче