Skip to content

Commit

Permalink
Merge pull request #28 from lokenmg/interests
Browse files Browse the repository at this point in the history
new component interests #27
  • Loading branch information
lokenmg authored Sep 11, 2022
2 parents c24ed6c + aef1117 commit 742af0b
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 5 deletions.
8 changes: 7 additions & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@
</td>
</tr>
<tr>
<app-languaje></app-languaje>
<td>
<app-languaje></app-languaje>
</td>
<td>
<app-interests></app-interests>
</td>

</tr>
</table>
</body>
Expand Down
3 changes: 0 additions & 3 deletions src/app/app.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,5 @@ tr{
td{
border-radius: 15px;
border-color: 030774;



}

4 changes: 3 additions & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { EducationComponent } from './education/education.component';
import { SkillsComponent } from './skills/skills.component';
import { ArchivementsComponent } from './archivements/archivements.component';
import { LanguajeComponent } from './languaje/languaje.component';
import { InterestsComponent } from './interests/interests.component';

@NgModule({
declarations: [
Expand All @@ -18,7 +19,8 @@ import { LanguajeComponent } from './languaje/languaje.component';
EducationComponent,
SkillsComponent,
ArchivementsComponent,
LanguajeComponent
LanguajeComponent,
InterestsComponent
],
imports: [
BrowserModule,
Expand Down
15 changes: 15 additions & 0 deletions src/app/interests/interests.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Intereses</h1>

videojuegos | investigaciones | ciencia |nuevos lenguajes de programación
|inteligencia artificial | desarrollo web
</body>
</html>
Empty file.
23 changes: 23 additions & 0 deletions src/app/interests/interests.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { InterestsComponent } from './interests.component';

describe('InterestsComponent', () => {
let component: InterestsComponent;
let fixture: ComponentFixture<InterestsComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ InterestsComponent ]
})
.compileComponents();

fixture = TestBed.createComponent(InterestsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
15 changes: 15 additions & 0 deletions src/app/interests/interests.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-interests',
templateUrl: './interests.component.html',
styleUrls: ['./interests.component.scss']
})
export class InterestsComponent implements OnInit {

constructor() { }

ngOnInit(): void {
}

}

0 comments on commit 742af0b

Please sign in to comment.