links component

master
Matt Huntington 9 years ago
parent 223aec2463
commit aaec629189

@ -4,12 +4,14 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { AboutComponent } from './about/about.component';
import { ResumeComponent } from './resume/resume.component';
import { LinksComponent } from './links/links.component';
@NgModule({
declarations: [
AppComponent,
AboutComponent,
ResumeComponent
ResumeComponent,
LinksComponent
],
imports: [
BrowserModule

@ -0,0 +1,3 @@
<p>
links works!
</p>

@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { LinksComponent } from './links.component';
describe('LinksComponent', () => {
let component: LinksComponent;
let fixture: ComponentFixture<LinksComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ LinksComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(LinksComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-links',
templateUrl: './links.component.html',
styleUrls: ['./links.component.css']
})
export class LinksComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
Loading…
Cancel
Save