1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-11 10:10:25 +01:00
bitwarden-browser/src/app/app.component.ts
2018-01-16 14:48:34 -05:00

16 lines
306 B
TypeScript

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.';
}