Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanist123 committed Apr 7, 2019
1 parent 455ffbb commit ba64c4e
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { DemoFormSkuComponent } from './demo-form-sku/demo-form-sku.component';

@NgModule({
declarations: [
AppComponent
AppComponent,
DemoFormSkuComponent
],
imports: [
BrowserModule
Expand Down
Empty file.
3 changes: 3 additions & 0 deletions src/app/demo-form-sku/demo-form-sku.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<p>
demo-form-sku works!
</p>
25 changes: 25 additions & 0 deletions src/app/demo-form-sku/demo-form-sku.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { DemoFormSkuComponent } from './demo-form-sku.component';

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

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

beforeEach(() => {
fixture = TestBed.createComponent(DemoFormSkuComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

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

@Component({
selector: 'app-demo-form-sku',
templateUrl: './demo-form-sku.component.html',
styleUrls: ['./demo-form-sku.component.css']
})
export class DemoFormSkuComponent implements OnInit {

constructor() {
}

ngOnInit() {
}

}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"strictNullChecks": true,
"declaration": false,
"module": "es2015",
"moduleResolution": "node",
Expand Down

0 comments on commit ba64c4e

Please sign in to comment.