1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

routing to login page

This commit is contained in:
Kyle Spearrin
2018-01-16 15:58:17 -05:00
parent a7994f7ebc
commit 824c5e5ff9
10 changed files with 74 additions and 21 deletions

View File

@@ -1,15 +1,9 @@
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
styles: [''],
template: `
<div class="jumbotron text-center">
<h1>The App Lives!</h1>
<p>{{ message }}</p>
</div>
`,
selector: 'app-root',
styles: [],
template: 'App<br /><router-outlet></router-outlet>',
})
export class AppComponent {
message = 'This is the sample message.';
}