We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9770ee commit 7c1eeccCopy full SHA for 7c1eecc
2 files changed
app/js/app.module.js
@@ -0,0 +1,11 @@
1
+(function(app) {
2
+ app.AppModule =
3
+ ng.core.NgModule({
4
+ imports: [ ng.platformBrowser.BrowserModule ],
5
+ declarations: [ app.AppComponent ],
6
+ bootstrap: [ app.AppComponent ]
7
+ })
8
+ .Class({
9
+ constructor: function() {}
10
+ });
11
+})(window.app || (window.app = {}));
app/sass/styles.scss
@@ -0,0 +1,9 @@
+// Template Colors
+h1 {
+ color: #369;
+ font-family: Arial, Helvetica, sans-serif;
+ font-size: 250%;
+}
+body {
+ margin: 2em;
0 commit comments