mirror of
https://github.com/bitwarden/browser
synced 2026-02-12 14:34:02 +00:00
17 lines
455 B
TypeScript
17 lines
455 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { Component } from "@angular/core";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
|
|
import { SharedModule } from "../../shared";
|
|
|
|
@Component({
|
|
selector: "tools-applications-loading",
|
|
standalone: true,
|
|
imports: [CommonModule, JslibModule, SharedModule],
|
|
templateUrl: "./applications-loading.component.html",
|
|
})
|
|
export class ApplicationsLoadingComponent {
|
|
constructor() {}
|
|
}
|