1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

stub out angular app with webpack

This commit is contained in:
Kyle Spearrin
2018-01-16 14:48:34 -05:00
parent 16b7607160
commit a7994f7ebc
12 changed files with 315 additions and 0 deletions

15
src/app/app.component.ts Normal file
View File

@@ -0,0 +1,15 @@
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>
`,
})
export class AppComponent {
message = 'This is the sample message.';
}