mirror of
https://github.com/bitwarden/clients.git
synced 2026-02-19 07:14:31 +08:00
10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
|
|
import { Component } from "@angular/core";
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: "app-root",
|
||
|
|
template: "",
|
||
|
|
})
|
||
|
|
export class AppComponent {
|
||
|
|
title = "components";
|
||
|
|
}
|