diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-03-08 08:27:13 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-03-08 08:37:15 +0100 |
commit | bd324a669218f9ed302f7f54b36ee535d25c9733 (patch) | |
tree | aebade345a240333c6f7e8e162881548c6c56dec /client/app | |
parent | 3d446a26ada901331faaaf3be9083dfe6773b50a (diff) | |
download | PeerTube-bd324a669218f9ed302f7f54b36ee535d25c9733.tar.gz PeerTube-bd324a669218f9ed302f7f54b36ee535d25c9733.tar.zst PeerTube-bd324a669218f9ed302f7f54b36ee535d25c9733.zip |
Prepare client app
Diffstat (limited to 'client/app')
-rw-r--r-- | client/app/app.component.html | 1 | ||||
-rw-r--r-- | client/app/app.component.scss | 3 | ||||
-rw-r--r-- | client/app/app.component.ts | 10 | ||||
-rw-r--r-- | client/app/main.ts | 4 |
4 files changed, 0 insertions, 18 deletions
diff --git a/client/app/app.component.html b/client/app/app.component.html deleted file mode 100644 index b6515528b..000000000 --- a/client/app/app.component.html +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | <h1>{{ title }}</h1> | ||
diff --git a/client/app/app.component.scss b/client/app/app.component.scss deleted file mode 100644 index e7315a8e9..000000000 --- a/client/app/app.component.scss +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | h1 { | ||
2 | font-size: 100px; | ||
3 | } | ||
diff --git a/client/app/app.component.ts b/client/app/app.component.ts deleted file mode 100644 index c908663e9..000000000 --- a/client/app/app.component.ts +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | import {Component} from 'angular2/core'; | ||
2 | |||
3 | @Component({ | ||
4 | selector: 'my-app', | ||
5 | templateUrl: 'app/app.component.html', | ||
6 | styleUrls: [ 'app/app.component.css' ] | ||
7 | }) | ||
8 | export class AppComponent { | ||
9 | title = "coucou"; | ||
10 | } | ||
diff --git a/client/app/main.ts b/client/app/main.ts deleted file mode 100644 index 034c15573..000000000 --- a/client/app/main.ts +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | import {bootstrap} from 'angular2/platform/browser' | ||
2 | import {AppComponent} from './app.component' | ||
3 | |||
4 | bootstrap(AppComponent); | ||