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:
15
src/app/app.component.ts
Normal file
15
src/app/app.component.ts
Normal 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.';
|
||||
}
|
||||
Reference in New Issue
Block a user