diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-03-07 18:01:56 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-03-07 18:01:56 +0100 |
commit | ccfd23dfe5c0ede1958804e8a36b4b336307a67e (patch) | |
tree | ac6f3a04dcb26fb6aa677c7045e93acc33fe26ab /client/app | |
parent | 6f4e252246c715a1dafc1e236c8074b08cdd12a3 (diff) | |
download | PeerTube-ccfd23dfe5c0ede1958804e8a36b4b336307a67e.tar.gz PeerTube-ccfd23dfe5c0ede1958804e8a36b4b336307a67e.tar.zst PeerTube-ccfd23dfe5c0ede1958804e8a36b4b336307a67e.zip |
I'm fed up with Gruntfile
Diffstat (limited to 'client/app')
-rw-r--r-- | client/app/app.component.css | 3 | ||||
-rw-r--r-- | client/app/app.component.html | 2 | ||||
-rw-r--r-- | client/app/app.component.scss | 3 | ||||
-rw-r--r-- | client/app/app.component.ts | 4 |
4 files changed, 7 insertions, 5 deletions
diff --git a/client/app/app.component.css b/client/app/app.component.css deleted file mode 100644 index d627027e4..000000000 --- a/client/app/app.component.css +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | h1 { | ||
2 | font-size: 80px; | ||
3 | } | ||
diff --git a/client/app/app.component.html b/client/app/app.component.html index 4bcdd569c..b6515528b 100644 --- a/client/app/app.component.html +++ b/client/app/app.component.html | |||
@@ -1 +1 @@ | |||
<h1>My First Angular 2 App</h1> | <h1>{{ title }}</h1> | ||
diff --git a/client/app/app.component.scss b/client/app/app.component.scss new file mode 100644 index 000000000..e7315a8e9 --- /dev/null +++ b/client/app/app.component.scss | |||
@@ -0,0 +1,3 @@ | |||
1 | h1 { | ||
2 | font-size: 100px; | ||
3 | } | ||
diff --git a/client/app/app.component.ts b/client/app/app.component.ts index f0ea272af..c908663e9 100644 --- a/client/app/app.component.ts +++ b/client/app/app.component.ts | |||
@@ -5,4 +5,6 @@ import {Component} from 'angular2/core'; | |||
5 | templateUrl: 'app/app.component.html', | 5 | templateUrl: 'app/app.component.html', |
6 | styleUrls: [ 'app/app.component.css' ] | 6 | styleUrls: [ 'app/app.component.css' ] |
7 | }) | 7 | }) |
8 | export class AppComponent { } | 8 | export class AppComponent { |
9 | title = "coucou"; | ||
10 | } | ||