Skip to content

Commit 8e8ec9a

Browse files
committed
add ivo rojas
1 parent 1dde448 commit 8e8ec9a

10 files changed

+76
-19
lines changed

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,4 @@ Before running the tests make sure you are serving the app via `ng serve`.
2525

2626
## Further help
2727

28-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
29-
30-
.x3
28+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

src/app/app.component.html

+5-15
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
11
<!--The content below is only a placeholder and can be replaced.-->
22
<div style="text-align:center">
3-
<h1>
4-
Welcome to {{title}}!!
5-
</h1>
63
<img width="300" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNTAgMjUwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNTAgMjUwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojREQwMDMxO30NCgkuc3Qxe2ZpbGw6I0MzMDAyRjt9DQoJLnN0MntmaWxsOiNGRkZGRkY7fQ0KPC9zdHlsZT4NCjxnPg0KCTxwb2x5Z29uIGNsYXNzPSJzdDAiIHBvaW50cz0iMTI1LDMwIDEyNSwzMCAxMjUsMzAgMzEuOSw2My4yIDQ2LjEsMTg2LjMgMTI1LDIzMCAxMjUsMjMwIDEyNSwyMzAgMjAzLjksMTg2LjMgMjE4LjEsNjMuMiAJIi8+DQoJPHBvbHlnb24gY2xhc3M9InN0MSIgcG9pbnRzPSIxMjUsMzAgMTI1LDUyLjIgMTI1LDUyLjEgMTI1LDE1My40IDEyNSwxNTMuNCAxMjUsMjMwIDEyNSwyMzAgMjAzLjksMTg2LjMgMjE4LjEsNjMuMiAxMjUsMzAgCSIvPg0KCTxwYXRoIGNsYXNzPSJzdDIiIGQ9Ik0xMjUsNTIuMUw2Ni44LDE4Mi42aDBoMjEuN2gwbDExLjctMjkuMmg0OS40bDExLjcsMjkuMmgwaDIxLjdoMEwxMjUsNTIuMUwxMjUsNTIuMUwxMjUsNTIuMUwxMjUsNTIuMQ0KCQlMMTI1LDUyLjF6IE0xNDIsMTM1LjRIMTA4bDE3LTQwLjlMMTQyLDEzNS40eiIvPg0KPC9nPg0KPC9zdmc+DQo=">
4+
<app-ivo-rojas>
5+
6+
</app-ivo-rojas>
77
</div>
8-
<h2>Here are some links to help you start: </h2>
9-
<ul>
10-
<li>
11-
<h2><a target="_blank" href="https://angular.io/tutorial">Tour of Heroes</a></h2>
12-
</li>
13-
<li>
14-
<h2><a target="_blank" href="https://github.com/angular/angular-cli/wiki">CLI Documentation</a></h2>
15-
</li>
16-
<li>
17-
<h2><a target="_blank" href="http://angularjs.blogspot.ca/">Angular blog</a></h2>
18-
</li>
19-
</ul>
8+
9+
2010

src/app/app.module.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ import { BrowserModule } from '@angular/platform-browser';
22
import { NgModule } from '@angular/core';
33

44
import { AppComponent } from './app.component';
5+
import { IvoRojasComponent } from './component/ivo-rojas/ivo-rojas.component';
56

67
@NgModule({
78
declarations: [
8-
AppComponent
9+
AppComponent,
10+
IvoRojasComponent
911
],
1012
imports: [
1113
BrowserModule

src/app/class/ivo-rojas.ts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Person } from "app/interface/person";
2+
import { University } from "app/class/university";
3+
4+
export class IvoRojas implements Person {
5+
name: string;
6+
age: number;
7+
university: University;
8+
9+
}

src/app/class/university.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export class University {
2+
name:string;
3+
}

src/app/component/ivo-rojas/ivo-rojas.component.css

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<p>
2+
ivo-rojas works!
3+
</p>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2+
3+
import { IvoRojasComponent } from './ivo-rojas.component';
4+
5+
describe('IvoRojasComponent', () => {
6+
let component: IvoRojasComponent;
7+
let fixture: ComponentFixture<IvoRojasComponent>;
8+
9+
beforeEach(async(() => {
10+
TestBed.configureTestingModule({
11+
declarations: [ IvoRojasComponent ]
12+
})
13+
.compileComponents();
14+
}));
15+
16+
beforeEach(() => {
17+
fixture = TestBed.createComponent(IvoRojasComponent);
18+
component = fixture.componentInstance;
19+
fixture.detectChanges();
20+
});
21+
22+
it('should be created', () => {
23+
expect(component).toBeTruthy();
24+
});
25+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import { Component, OnInit } from '@angular/core';
2+
import { IvoRojas } from "app/class/ivo-rojas";
3+
4+
@Component({
5+
selector: 'app-ivo-rojas',
6+
templateUrl: './ivo-rojas.component.html',
7+
styleUrls: ['./ivo-rojas.component.css']
8+
})
9+
export class IvoRojasComponent implements OnInit {
10+
ivoRojas:IvoRojas;
11+
constructor() {
12+
this.ivoRojas = new IvoRojas();
13+
this.ivoRojas.name = 'xD';
14+
this.ivoRojas.age = 20;
15+
}
16+
17+
ngOnInit() {
18+
19+
}
20+
}

src/app/interface/person.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { University } from "app/class/university";
2+
3+
export interface Person {
4+
name:string;
5+
age:number;
6+
university:University;
7+
}

0 commit comments

Comments
 (0)