Add dummy components (#113)

This commit is contained in:
Nejc Zdovc
2016-09-21 20:05:30 +02:00
committed by József Farkas
parent b4a7dbfb20
commit cc3bee4ab2
19 changed files with 122 additions and 10 deletions

View File

@@ -0,0 +1,2 @@
export * from './settings.component';
export * from './settings.routes';

View File

@@ -0,0 +1,7 @@
<div class="row">
<h1 class="col-xs-12 pane-title">
<i class="fa fa-gear"></i>
<span class="macro__name pane-title__name">Settings</span>
</h1>
</div>
To be done...

View File

@@ -0,0 +1,10 @@
import { Component } from '@angular/core';
@Component({
selector: 'settings',
template: require('./settings.component.html'),
styles: [require('./settings.component.scss')]
})
export class SettingsComponent {
constructor() { }
}

View File

@@ -0,0 +1,10 @@
import { Routes } from '@angular/router';
import { SettingsComponent } from './settings.component';
export const settingsRoutes: Routes = [
{
path: 'settings',
component: SettingsComponent
}
];