Set one example of css class in app component

This commit is contained in:
Maxime GRIS
2017-04-19 20:36:09 +02:00
parent e29e46772f
commit a15775fb7a
3 changed files with 6 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
<h1>
<h1 class="title">
{{title}}
</h1>

View File

@@ -0,0 +1,3 @@
.title {
color: red;
}

View File

@@ -8,7 +8,7 @@ import * as childProcess from 'child_process';
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'app works!';
title = `App works !`;
constructor() {
// Check if electron is correctly injected (see externals in webpack.config.js)
@@ -17,4 +17,4 @@ export class AppComponent {
console.log('c', childProcess);
}
}
}