Skip to content

Commit 525f922

Browse files
author
pigr2
committed
quickstart added and working... need to bring everything there. I'll do it in the afternoon :-)
1 parent 94f5466 commit 525f922

24 files changed

+6768
-6
lines changed

quickstart/app/app.component.js

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickstart/app/app.component.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickstart/app/app.component.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { Component } from '@angular/core';
2+
@Component({
3+
selector: 'my-app',
4+
template: '<h1>My First Angular 2 App</h1>'
5+
})
6+
export class AppComponent { }

quickstart/app/app.module.js

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickstart/app/app.module.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickstart/app/app.module.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { NgModule } from '@angular/core';
2+
import { BrowserModule } from '@angular/platform-browser';
3+
import {AppComponent} from "./app.component";
4+
5+
@NgModule({
6+
imports: [ BrowserModule ],
7+
declarations: [ AppComponent ],
8+
bootstrap: [ AppComponent ]
9+
})
10+
export class AppModule { }

quickstart/app/main.js

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickstart/app/main.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickstart/app/main.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2+
import { AppModule } from './app.module';
3+
4+
const platform = platformBrowserDynamic();
5+
6+
platform.bootstrapModule(AppModule);

quickstart/app/styles.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* Master Styles */
2+
h1 {
3+
color: #369;
4+
font-family: Arial, Helvetica, sans-serif;
5+
font-size: 250%;
6+
}
7+
h2, h3 {
8+
color: #444;
9+
font-family: Arial, Helvetica, sans-serif;
10+
font-weight: lighter;
11+
}
12+
body {
13+
margin: 2em;
14+
}

0 commit comments

Comments
 (0)