This commit is contained in:
ajanieniolasolomon 2018-10-04 09:47:22 +01:00
Родитель a4e8188dcc
Коммит 6699aa3778
15 изменённых файлов: 948 добавлений и 948 удалений

1882
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

Просмотреть файл

@ -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 {
}