mirror of
https://github.com/bitwarden/browser
synced 2026-02-18 02:19:18 +00:00
* Create web-specifc credential-generator component * Add missing entries in en/messages.json * Import and use conditional routing for new credential generator component * Add comment about temporary using password-generator component * Update comment to include FIXME which is more easily searchable --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
15 lines
454 B
TypeScript
15 lines
454 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { GeneratorModule } from "@bitwarden/generator-components";
|
|
|
|
import { HeaderModule } from "../../layouts/header/header.module";
|
|
import { SharedModule } from "../../shared";
|
|
|
|
@Component({
|
|
standalone: true,
|
|
selector: "credential-generator",
|
|
templateUrl: "credential-generator.component.html",
|
|
imports: [SharedModule, HeaderModule, GeneratorModule],
|
|
})
|
|
export class CredentialGeneratorComponent {}
|